@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.
25 lines (23 loc) • 711 B
text/typescript
import type { Scope } from './scope';
/** Details about an issue type. */
export interface IssueTypeDetails {
/** The URL of these issue type details. */
self?: string;
/** The ID of the issue type. */
id?: string;
/** The description of the issue type. */
description?: string;
/** The URL of the issue type's avatar. */
iconUrl?: string;
/** The name of the issue type. */
name?: string;
/** Whether this issue type is used to create subtasks. */
subtask?: boolean;
/** The ID of the issue type's avatar. */
avatarId?: number;
/** Unique ID for next-gen projects. */
entityId?: string;
/** Hierarchy level of the issue type. */
hierarchyLevel?: number;
scope?: Scope;
}