Details of the status being updated.

interface WorkflowStatusUpdate {
    description?: string;
    id?: string;
    name: string;
    statusCategory: "TODO" | "IN_PROGRESS" | "DONE";
    statusReference: string;
}

Hierarchy

  • Record<string, unknown>
    • WorkflowStatusUpdate

Properties

description?: string

The description of the status.

id?: string

The ID of the status.

name: string

The name of the status.

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

The category of the status.

statusReference: string

The reference of the status.