/** * 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. */ /** * Details of an entity property. * @export * @interface JqlQueryFieldEntityProperty */ export interface JqlQueryFieldEntityProperty { /** * The key of the property. * @type {string} * @memberof JqlQueryFieldEntityProperty */ key: string; /** * The object on which the property is set. * @type {string} * @memberof JqlQueryFieldEntityProperty */ entity: string; /** * The type of the property value extraction. Not available if the extraction for the property is not registered on the instance with the [Entity property](https://developer.atlassian.com/cloud/jira/platform/modules/entity-property/) module. * @type {string} * @memberof JqlQueryFieldEntityProperty */ type?: JqlQueryFieldEntityPropertyTypeEnum; /** * The path in the property value to query. * @type {string} * @memberof JqlQueryFieldEntityProperty */ path: string; } export declare function JqlQueryFieldEntityPropertyFromJSON(json: any): JqlQueryFieldEntityProperty; export declare function JqlQueryFieldEntityPropertyFromJSONTyped(json: any, ignoreDiscriminator: boolean): JqlQueryFieldEntityProperty; export declare function JqlQueryFieldEntityPropertyToJSON(value?: JqlQueryFieldEntityProperty): any; /** * @export * @enum {string} */ export declare enum JqlQueryFieldEntityPropertyTypeEnum { Number = "number", String = "string", Text = "text", Date = "date", User = "user" }