/** * 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 { JqlQueryFieldEntityProperty } from './'; /** * A field used in a JQL query. See [Advanced searching - fields reference](https://confluence.atlassian.com/x/dAiiLQ) for more information about fields in JQL queries. * @export * @interface JqlQueryField */ export interface JqlQueryField { /** * When the field refers to a value in an entity property, details of the entity property value. * @type {Array} * @memberof JqlQueryField */ property?: Array; /** * The name of the field. * @type {string} * @memberof JqlQueryField */ name: string; } export declare function JqlQueryFieldFromJSON(json: any): JqlQueryField; export declare function JqlQueryFieldFromJSONTyped(json: any, ignoreDiscriminator: boolean): JqlQueryField; export declare function JqlQueryFieldToJSON(value?: JqlQueryField): any;