A Jira issue type (e.g. Story, Bug, Task, Epic).

interface JiraIssueType {
    avatarId?: number;
    description?: string;
    hierarchyLevel?: number;
    iconUrl?: string;
    id: string;
    name: string;
    self: string;
    subtask: boolean;
}

Properties

avatarId?: number

Avatar ID for this issue type

description?: string

Issue type description

hierarchyLevel?: number

Hierarchy level (0 = standard, -1 = subtask, 1 = epic)

iconUrl?: string

URL of the issue type icon

id: string

Numeric string ID

name: string

Issue type name

self: string

URL of the issue type resource

subtask: boolean

Whether this issue type is a sub-task