/** * 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 of items. * @export * @interface PageBeanDashboard */ export interface PageBeanDashboard { /** * The index of the first item returned. * @type {number} * @memberof PageBeanDashboard */ readonly startAt?: number; /** * The maximum number of items that could be returned. * @type {number} * @memberof PageBeanDashboard */ readonly maxResults?: number; /** * If there is another page of results, the URL of the next page. * @type {string} * @memberof PageBeanDashboard */ readonly nextPage?: string; /** * The list of items. * @type {Array} * @memberof PageBeanDashboard */ readonly values?: Array; /** * The number of items returned. * @type {number} * @memberof PageBeanDashboard */ readonly total?: number; /** * Indicates whether this is the last page. * @type {boolean} * @memberof PageBeanDashboard */ readonly isLast?: boolean; /** * The URL of the page. * @type {string} * @memberof PageBeanDashboard */ readonly self?: string; } export declare function PageBeanDashboardFromJSON(json: any): PageBeanDashboard; export declare function PageBeanDashboardFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageBeanDashboard; export declare function PageBeanDashboardToJSON(value?: PageBeanDashboard): any;