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.

14 lines (13 loc) 373 B
/** Details of the status being updated. */ export interface WorkflowStatusUpdate { /** The description of the status. */ description?: string; /** The ID of the status. */ id?: string; /** The name of the status. */ name: string; /** The category of the status. */ statusCategory: string; /** The reference of the status. */ statusReference: string; }