The details of the statuses in the associated workflows.

interface StatusMetadata {
    category?: "TODO" | "IN_PROGRESS" | "DONE";
    id?: string;
    name?: string;
}

Properties

Properties

category?: "TODO" | "IN_PROGRESS" | "DONE"

The category of the status.

id?: string

The ID of the status.

name?: string

The name of the status.