interface IInput {
    data: {
        attachments?: null | string[];
        coopname: string;
        creators?: null | string[];
        cycle_id?: null | string;
        description?: null | string;
        estimate?: null | number;
        labels?: null | string[];
        priority?: null | IssuePriority;
        project_hash: string;
        sort_order?: null | number;
        status?: null | IssueStatus;
        submaster?: null | string;
        title: string;
    };
}

Properties

Properties

data: {
    attachments?: null | string[];
    coopname: string;
    creators?: null | string[];
    cycle_id?: null | string;
    description?: null | string;
    estimate?: null | number;
    labels?: null | string[];
    priority?: null | IssuePriority;
    project_hash: string;
    sort_order?: null | number;
    status?: null | IssueStatus;
    submaster?: null | string;
    title: string;
}

Type declaration

  • Optional attachments?: null | string[]

    Вложения задачи

  • coopname: string

    Имя аккаунта кооператива

  • Optional creators?: null | string[]

    Массив имен пользователей создателей (contributors)

  • Optional cycle_id?: null | string

    ID цикла

  • Optional description?: null | string

    Описание задачи

  • Optional estimate?: null | number

    Оценка в story points или часах

  • Optional labels?: null | string[]

    Метки задачи

  • Optional priority?: null | IssuePriority

    Приоритет задачи

  • project_hash: string

    Хеш проекта

  • Optional sort_order?: null | number

    Порядок сортировки

  • Optional status?: null | IssueStatus

    Статус задачи

  • Optional submaster?: null | string

    Имя пользователя подмастерья (contributor)

  • title: string

    Название задачи