/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Dashboard } from './'; /** * A page containing dashboard details. * @export * @interface PageOfDashboards */ export interface PageOfDashboards { /** * List of dashboards. * @type {Array} * @memberof PageOfDashboards */ readonly dashboards?: Array; /** * The index of the first item returned on the page. * @type {number} * @memberof PageOfDashboards */ readonly startAt?: number; /** * The URL of the next page of results, if any. * @type {string} * @memberof PageOfDashboards */ readonly next?: string; /** * The maximum number of results that could be on the page. * @type {number} * @memberof PageOfDashboards */ readonly maxResults?: number; /** * The URL of the previous page of results, if any. * @type {string} * @memberof PageOfDashboards */ readonly prev?: string; /** * The number of results on the page. * @type {number} * @memberof PageOfDashboards */ readonly total?: number; } export declare function PageOfDashboardsFromJSON(json: any): PageOfDashboards; export declare function PageOfDashboardsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageOfDashboards; export declare function PageOfDashboardsToJSON(value?: PageOfDashboards): any;