@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.
17 lines (16 loc) • 632 B
text/typescript
export interface DeleteWorkflowTransitionProperty {
/**
* The ID of the transition. To get the ID, view the workflow in text mode in the Jira admin settings. The ID is shown
* next to the transition.
*/
transitionId: number;
/** The name of the transition property to delete, also known as the name of the property. */
key: string;
/** The name of the workflow that the transition belongs to. */
workflowName: string;
/**
* The workflow status. Set to `live` for inactive workflows or `draft` for draft workflows. Active workflows cannot
* be edited.
*/
workflowMode?: 'live' | 'draft' | string;
}