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.

10 lines (9 loc) 286 B
/** Details of a custom field option for a context. */ export interface CustomFieldOptionUpdate { /** The ID of the custom field option. */ id: string; /** The value of the custom field option. */ value?: string; /** Whether the option is disabled. */ disabled?: boolean; }