/** * 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. */ /** * The description of the page of issues loaded by the provided JQL query. * @export * @interface IssuesJqlMetaDataBean */ export interface IssuesJqlMetaDataBean { /** * The index of the first issue. * @type {number} * @memberof IssuesJqlMetaDataBean */ startAt: number; /** * The maximum number of issues that could be loaded in this evaluation. * @type {number} * @memberof IssuesJqlMetaDataBean */ maxResults: number; /** * Any warnings related to the JQL query. Present only if the validation mode was set to `warn`. * @type {Array} * @memberof IssuesJqlMetaDataBean */ validationWarnings?: Array; /** * The total number of issues the JQL returned. * @type {number} * @memberof IssuesJqlMetaDataBean */ totalCount: number; /** * The number of issues that were loaded in this evaluation. * @type {number} * @memberof IssuesJqlMetaDataBean */ count: number; } export declare function IssuesJqlMetaDataBeanFromJSON(json: any): IssuesJqlMetaDataBean; export declare function IssuesJqlMetaDataBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssuesJqlMetaDataBean; export declare function IssuesJqlMetaDataBeanToJSON(value?: IssuesJqlMetaDataBean): any;