interface IInput {
    data: {
        description?: null | string;
        issue_id?: null | string;
        project_hash?: null | string;
        sort_order?: null | number;
        status?: null | StoryStatus;
        story_hash: string;
        title?: null | string;
    };
}

Properties

Properties

data: {
    description?: null | string;
    issue_id?: null | string;
    project_hash?: null | string;
    sort_order?: null | number;
    status?: null | StoryStatus;
    story_hash: string;
    title?: null | string;
}

Type declaration

  • Optional description?: null | string

    Описание истории

  • Optional issue_id?: null | string

    ID задачи (если история привязана к задаче)

  • Optional project_hash?: null | string

    Хеш проекта (если история привязана к проекту)

  • Optional sort_order?: null | number

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

  • Optional status?: null | StoryStatus

    Статус истории

  • story_hash: string

    Хэш истории для обновления

  • Optional title?: null | string

    Название истории