@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) • 362 B
text/typescript
export interface GetDefaultWorkflow {
/** The ID of the workflow scheme. */
id: number;
/**
* Set to `true` to return the default workflow for the workflow scheme's draft rather than scheme itself. If the
* workflow scheme does not have a draft, then the default workflow for the workflow scheme is returned.
*/
returnDraftIfExists?: boolean;
}