/** * 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 { JexpJqlIssues } from './'; /** * The JQL specifying the issues available in the evaluated Jira expression under the `issues` context variable. * @export * @interface JexpIssues */ export interface JexpIssues { /** * The JQL query that specifies the set of issues available in the Jira expression. * @type {JexpJqlIssues} * @memberof JexpIssues */ jql?: JexpJqlIssues; } export declare function JexpIssuesFromJSON(json: any): JexpIssues; export declare function JexpIssuesFromJSONTyped(json: any, ignoreDiscriminator: boolean): JexpIssues; export declare function JexpIssuesToJSON(value?: JexpIssues): any;