@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
16 lines (15 loc) • 553 B
text/typescript
/** Details of an entity property. */
export interface JqlQueryFieldEntityProperty {
/** 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?: string;
}