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.

10 lines (9 loc) 477 B
/** Details of the name, description, and default issue type for an issue type scheme. */ export interface IssueTypeSchemeUpdateDetails { /** The ID of the default issue type of the issue type scheme. */ defaultIssueTypeId?: string; /** The description of the issue type scheme. The maximum length is 4000 characters. */ description?: string; /** The name of the issue type scheme. The name must be unique. The maximum length is 255 characters. */ name?: string; }