@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.
15 lines (13 loc) • 524 B
text/typescript
import type { WorkflowStatusProperties } from './workflowStatusProperties';
/** Details of a workflow status. */
export interface WorkflowStatus {
/** The ID of the issue status. */
id: string;
/** The name of the status in the workflow. */
name: string;
/**
* Additional properties that modify the behavior of issues in this status. Supports the properties
* `jira.issue.editable` and `issueEditable` (deprecated) that indicate whether issues are editable.
*/
properties?: WorkflowStatusProperties;
}