@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.
19 lines (17 loc) • 876 B
text/typescript
import type { IssueFieldOptionConfiguration } from './issueFieldOptionConfiguration';
/** Details of the options for a select list issue field. */
export interface IssueFieldOption {
config?: IssueFieldOptionConfiguration;
/** The unique identifier for the option. This is only unique within the select field's set of options. */
id: number;
/**
* The properties of the object, as arbitrary key-value pairs. These properties can be searched using JQL, if the
* extractions (see [Issue Field Option Property
* Index](https://developer.atlassian.com/cloud/jira/platform/modules/issue-field-option-property-index/)) are defined
* in the descriptor for the issue field module.
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
properties?: Record<string, any>;
/** The option's name, which is displayed in Jira. */
value: string;
}