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

Properties

Properties

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

Type declaration

  • coopname: string

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

  • 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

    Хеш истории для внешних ссылок

  • title: string

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