Page of items, including workflows and related statuses.

interface WorkflowSearchResponse {
    isLast?: boolean;
    maxResults?: number;
    nextPage?: string;
    self?: string;
    startAt?: number;
    statuses?: JiraWorkflowStatus[];
    total?: number;
    values?: JiraWorkflow[];
}

Properties

isLast?: boolean

Whether this is the last page.

maxResults?: number

The maximum number of items that could be returned.

nextPage?: string

If there is another page of results, the URL of the next page.

self?: string

The URL of the page.

startAt?: number

The index of the first item returned.

statuses?: JiraWorkflowStatus[]

List of statuses.

total?: number

The number of items returned.

values?: JiraWorkflow[]

List of workflows.