/** * 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 { JqlQuery } from './'; /** * Details of a parsed JQL query. * @export * @interface ParsedJqlQuery */ export interface ParsedJqlQuery { /** * The JQL query that was parsed and validated. * @type {string} * @memberof ParsedJqlQuery */ query: string; /** * The list of syntax or validation errors. * @type {Array} * @memberof ParsedJqlQuery */ errors?: Array; /** * The syntax tree of the query. Empty if the query was invalid. * @type {JqlQuery} * @memberof ParsedJqlQuery */ structure?: JqlQuery; } export declare function ParsedJqlQueryFromJSON(json: any): ParsedJqlQuery; export declare function ParsedJqlQueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): ParsedJqlQuery; export declare function ParsedJqlQueryToJSON(value?: ParsedJqlQuery): any;