@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.
21 lines (19 loc) • 846 B
text/typescript
import type { CreateWorkflowTransitionRulesDetails } from './createWorkflowTransitionRulesDetails';
import type { CreateWorkflowTransitionScreenDetails } from './createWorkflowTransitionScreenDetails';
/** The details of a workflow transition. */
export interface CreateWorkflowTransitionDetails {
/** The description of the transition. The maximum length is 1000 characters. */
description?: string;
/** The statuses the transition can start from. */
from?: string[];
/** The name of the transition. The maximum length is 60 characters. */
name: string;
/** The properties of the transition. */
properties?: unknown;
rules?: CreateWorkflowTransitionRulesDetails;
screen?: CreateWorkflowTransitionScreenDetails;
/** The status the transition goes to. */
to: string;
/** The type of the transition. */
type: string;
}