/** * 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. */ /** * A list of the issues matched to a JQL query or details of errors encountered during matching. * @export * @interface IssueMatchesForJQL */ export interface IssueMatchesForJQL { /** * A list of issue IDs. * @type {Array} * @memberof IssueMatchesForJQL */ matchedIssues: Array; /** * A list of errors. * @type {Array} * @memberof IssueMatchesForJQL */ errors: Array; } export declare function IssueMatchesForJQLFromJSON(json: any): IssueMatchesForJQL; export declare function IssueMatchesForJQLFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueMatchesForJQL; export declare function IssueMatchesForJQLToJSON(value?: IssueMatchesForJQL): any;