@coopenomics/sdk
    Preparing search index...
    interface IInput {
        data: {
            attachments?: string[] | null;
            creators?: string[] | null;
            cycle_id?: string | null;
            description?: string | null;
            estimate?: number | null;
            issue_hash: string;
            labels?: string[] | null;
            priority?: IssuePriority | null;
            sort_order?: number | null;
            status?: IssueStatus | null;
            submaster?: string | null;
            title?: string | null;
        };
    }
    Index

    Properties

    Properties

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

    Type Declaration

    • Optionalattachments?: string[] | null

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

    • Optionalcreators?: string[] | null

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

    • Optionalcycle_id?: string | null

      ID цикла

    • Optionaldescription?: string | null

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

    • Optionalestimate?: number | null

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

    • issue_hash: string

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

    • Optionallabels?: string[] | null

      Метки задачи

    • Optionalpriority?: IssuePriority | null

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

    • Optionalsort_order?: number | null

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

    • Optionalstatus?: IssueStatus | null

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

    • Optionalsubmaster?: string | null

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

    • Optionaltitle?: string | null

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