/** * 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 { IssueMatchesForJQL } from './'; /** * A list of matched issues or errors for each JQL query, in the order the JQL queries were passed. * @export * @interface IssueMatches */ export interface IssueMatches { /** * * @type {Array} * @memberof IssueMatches */ matches: Array; } export declare function IssueMatchesFromJSON(json: any): IssueMatches; export declare function IssueMatchesFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueMatches; export declare function IssueMatchesToJSON(value?: IssueMatches): any;