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.

22 lines (21 loc) 926 B
export interface GetWorkflowTransitionProperties { /** * The ID of the transition. To get the ID, view the workflow in text mode in the Jira administration console. The ID * is shown next to the transition. */ transitionId: number; /** * Some properties with keys that have the _jira._ prefix are reserved, which means they are not editable. To include * these properties in the results, set this parameter to _true_. */ includeReservedKeys?: boolean; /** * The key of the property being returned, also known as the name of the property. If this parameter is not specified, * all properties on the transition are returned. */ key?: string; /** The name of the workflow that the transition belongs to. */ workflowName: string; /** The workflow status. Set to _live_ for active and inactive workflows, or _draft_ for draft workflows. */ workflowMode?: 'live' | 'draft' | string; }