/** * 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 JQL specifying the issues available in the evaluated Jira expression under the `issues` context variable. Not all issues returned by the JQL query will be loaded, but only a portion of them, as described by the `startAt` and `maxResults` properties. Iterate over pages by inspecting the meta data included in the response. * @export * @interface JexpJqlIssues */ export interface JexpJqlIssues { /** * The maximum number of issues that will be included on the list. This value is currently capped at 1000 but the cap may change without notice. * @type {number} * @memberof JexpJqlIssues */ maxResults?: number; /** * The index of the first issue returned from the JQL query. * @type {number} * @memberof JexpJqlIssues */ startAt?: number; /** * The JQL query. * @type {string} * @memberof JexpJqlIssues */ query?: string; /** * Determines how to validate the JQL query and treat the validation results. * @type {string} * @memberof JexpJqlIssues */ validation?: JexpJqlIssuesValidationEnum; } export declare function JexpJqlIssuesFromJSON(json: any): JexpJqlIssues; export declare function JexpJqlIssuesFromJSONTyped(json: any, ignoreDiscriminator: boolean): JexpJqlIssues; export declare function JexpJqlIssuesToJSON(value?: JexpJqlIssues): any; /** * @export * @enum {string} */ export declare enum JexpJqlIssuesValidationEnum { Strict = "strict", Warn = "warn", None = "none" }