@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.
23 lines (21 loc) • 779 B
text/typescript
import type { ProjectIssueTypes } from './projectIssueTypes';
import type { WorkflowScope } from './workflowScope';
/** Details of a status. */
export interface JiraWorkflowStatus {
/** The description of the status. */
description?: string;
/** The ID of the status. */
id?: string;
/** The name of the status. */
name?: string;
scope?: WorkflowScope;
/** The category of the status. */
statusCategory?: string;
/** The reference of the status. */
statusReference?: string;
/**
* The `statuses.usages` expand is an optional parameter that can be used when reading and updating statuses in Jira.
* It provides additional information about the projects and issue types associated with the requested statuses.
*/
usages?: ProjectIssueTypes[];
}