/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface JqlQueryFieldEntityPropertyAsResponse { /** * The object on which the property is set. */ entity: string; /** * The key of the property. */ key: string; /** * The path in the property value to query. */ path: 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?: "number" | "string" | "text" | "date" | "user"; } //# sourceMappingURL=JqlQueryFieldEntityPropertyAsResponse.d.ts.map