interface PagedDtoIssueBean {
    _expands?: string[];
    _links?: PagedLinkDto;
    isLastPage?: boolean;
    limit?: number;
    size?: number;
    start?: number;
    values?: IssueBean[];
}

Properties

_expands?: string[]
_links?: PagedLinkDto

List of the links relating to the page.

isLastPage?: boolean

Indicates if this is the last page of records (true) or not (false).

limit?: number

Number of items to be returned per page, up to the maximum set for these objects in the current implementation.

size?: number

Number of items returned in the page.

start?: number

Index of the first item returned in the page.

values?: IssueBean[]

Details of the items included in the page.