@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.
12 lines (11 loc) • 408 B
text/typescript
/** Details of the custom field options for a context. */
export interface CustomFieldContextOption {
/** Whether the option is disabled. */
disabled: boolean;
/** The ID of the custom field option. */
id: string;
/** For cascading options, the ID of the custom field option containing the cascading option. */
optionId?: string;
/** The value of the custom field option. */
value: string;
}