Bitbucket Data Center API Client
    Preparing search index...

    Interface TasksParams

    Query parameters accepted by GET /rest/api/latest/projects/{key}/repos/{slug}/pull-requests/{id}/blocker-comments.

    interface TasksParams {
        count?: boolean;
        limit?: number;
        start?: number;
        states?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    count?: boolean

    If true, only the count of tasks by state is returned

    limit?: number

    Maximum number of results to return per page. Bitbucket default is 25, maximum is 1000.

    start?: number

    0-based index of the first result to return. Use nextPageStart from the previous response to paginate forward.

    states?: string

    Only return tasks in the given states (e.g. 'OPEN', 'RESOLVED')