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.

12 lines (11 loc) 633 B
/** Details of an issue type scheme and its associated issue types. */ export interface IssueTypeSchemeDetails { /** The name of the issue type scheme. The name must be unique. The maximum length is 255 characters. */ name: string; /** The description of the issue type scheme. The maximum length is 4000 characters. */ description?: string; /** The ID of the default issue type of the issue type scheme. This ID must be included in `issueTypeIds`. */ defaultIssueTypeId?: string; /** The list of issue types IDs of the issue type scheme. At least one standard issue type ID is required. */ issueTypeIds: string[]; }