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.

18 lines (17 loc) 520 B
/** An issue priority. */ export interface Priority { /** The description of the issue priority. */ description?: string; /** The URL of the icon for the issue priority. */ iconUrl?: string; /** The ID of the issue priority. */ id?: string; /** Whether this priority is the default. */ isDefault?: boolean; /** The name of the issue priority. */ name?: string; /** The URL of the issue priority. */ self?: string; /** The color used to indicate the issue priority. */ statusColor?: string; }