Details of a status.

interface JiraStatus {
    description?: string;
    id?: string;
    name?: string;
    scope?: StatusScope;
    statusCategory?: "TODO" | "IN_PROGRESS" | "DONE";
}

Properties

description?: string

The description of the status.

id?: string

The ID of the status.

name?: string

The name of the status.

scope?: StatusScope

The scope of the status.

statusCategory?: "TODO" | "IN_PROGRESS" | "DONE"

The category of the status.