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