A page containing dashboard details.

interface PageOfDashboards {
    dashboards?: Version3.Version3Models.Dashboard[];
    maxResults?: number;
    next?: string;
    prev?: string;
    startAt?: number;
    total?: number;
}

Properties

List of dashboards.

maxResults?: number

The maximum number of results that could be on the page.

next?: string

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

prev?: string

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

startAt?: number

The index of the first item returned on the page.

total?: number

The number of results on the page.