UNPKG

@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.

15 lines (13 loc) 600 B
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 encoded name of the field, which can be used directly in a JQL query. */ encodedName?: string; /** 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[]; }