interface PageOfStatuses {
    isLast?: boolean;
    maxResults?: number;
    nextPage?: string;
    self?: string;
    startAt?: number;
    total?: number;
    values?: Version3.Version3Models.JiraStatus[];
}

Properties

isLast?: boolean

Whether this is the last page.

maxResults?: number

The maximum number of items that could be returned.

nextPage?: string

The URL of the next page of results, if any.

self?: string

The URL of this page.

startAt?: number

The index of the first item returned on the page.

total?: number

Number of items that satisfy the search.

The list of items.