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.

16 lines (14 loc) 412 B
import type { SelfLink } from './selfLink'; export interface Queue { /** ID for the queue. */ id?: string; /** Short name for the queue. */ name?: string; /** JQL query that filters reqeusts for the queue. */ jql?: string; /** Fields returned for each request in the queue. */ fields?: string[]; /** The count of customer requests in the queue. */ issueCount?: number; Links?: SelfLink; }