@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) • 380 B
text/typescript
export interface DeleteWorkflowSchemeIssueType {
/** The ID of the workflow scheme. */
id: number;
/** The ID of the issue type. */
issueType: string;
/**
* Set to true to create or update the draft of a workflow scheme and update the mapping in the draft, when the
* workflow scheme cannot be edited. Defaults to `false`.
*/
updateDraftIfNeeded?: boolean;
}