The statuses associated with each workflow.

interface StatusesPerWorkflow {
    initialStatusId?: string;
    statuses?: string[];
    workflowId?: string;
}

Properties

initialStatusId?: string

The ID of the initial status for the workflow.

statuses?: string[]

The status IDs associated with the workflow.

workflowId?: string

The ID of the workflow.