interface IInput {
    filter?: {
        coopname?: null | string;
        created_by?: null | string;
        issue_id?: null | string;
        project_hash?: null | string;
        status?: null | StoryStatus;
        title?: null | string;
    };
    options?: {
        limit: number;
        page: number;
        sortBy?: null | string;
        sortOrder: string;
    };
}

Properties

Properties

filter?: {
    coopname?: null | string;
    created_by?: null | string;
    issue_id?: null | string;
    project_hash?: null | string;
    status?: null | StoryStatus;
    title?: null | string;
}

Type declaration

  • Optional coopname?: null | string

    Фильтр по названию кооператива

  • Optional created_by?: null | string

    Фильтр по ID создателя

  • Optional issue_id?: null | string

    Фильтр по ID задачи

  • Optional project_hash?: null | string

    Фильтр по хешу проекта

  • Optional status?: null | StoryStatus

    Фильтр по статусу истории

  • Optional title?: null | string

    Фильтр по названию истории

options?: {
    limit: number;
    page: number;
    sortBy?: null | string;
    sortOrder: string;
}

Type declaration

  • limit: number

    Количество элементов на странице

  • page: number

    Номер страницы

  • Optional sortBy?: null | string

    Ключ сортировки (например, "name")

  • sortOrder: string

    Направление сортировки ("ASC" или "DESC")