A page of items.

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

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.

total: number

The number of items returned.

The list of items.