@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 (12 loc) • 434 B
text/typescript
export interface ReplaceCustomFieldOption {
/** The ID of the option that will replace the currently selected option. */
replaceWith?: number;
/** A JQL query that specifies the issues to be updated. For example, _project=10000_. */
jql?: string;
/** The ID of the custom field. */
fieldId: string;
/** The ID of the option to be deselected. */
optionId: number;
/** The ID of the context. */
contextId: number;
}