@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) • 378 B
text/typescript
/** A status category. */
export interface StatusCategory {
/** The name of the color used to represent the status category. */
colorName: string;
/** The ID of the status category. */
id: number;
/** The key of the status category. */
key: string;
/** The name of the status category. */
name: string;
/** The URL of the status category. */
self: string;
}