Status details for an issue type.

interface IssueTypeWithStatus {
    id: string;
    name: string;
    self: string;
    statuses: Version2.Version2Models.StatusDetails[];
    subtask: boolean;
}

Properties

id: string

The ID of the issue type.

name: string

The name of the issue type.

self: string

The URL of the issue type's status details.

List of status details for the issue type.

subtask: boolean

Whether this issue type represents subtasks.