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

Properties

Properties

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

Type declaration

  • Optional attachments?: null | string[]

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

  • Optional creators?: null | string[]

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

  • Optional cycle_id?: null | string

    ID цикла

  • Optional description?: null | string

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

  • Optional estimate?: null | number

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

  • issue_hash: string

    Хэш задачи для обновления

  • Optional labels?: null | string[]

    Метки задачи

  • Optional priority?: null | IssuePriority

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

  • Optional sort_order?: null | number

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

  • Optional status?: null | IssueStatus

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

  • Optional submaster?: null | string

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

  • Optional title?: null | string

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