@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.
13 lines (11 loc) • 493 B
text/typescript
import type { JqlQueryFieldEntityProperty } from './jqlQueryFieldEntityProperty';
/**
* 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 {
/** The name of the field. */
name: string;
/** When the field refers to a value in an entity property, details of the entity property value. */
property?: JqlQueryFieldEntityProperty[];
}