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