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