The details of the workflows to create.

interface WorkflowCreate {
    description?: string;
    name: string;
    startPointLayout?: null | WorkflowLayout;
    statuses: StatusLayoutUpdate[];
    transitions: TransitionUpdateDto[];
}

Properties

description?: string

The description of the workflow to create.

name: string

The name of the workflow to create.

startPointLayout?: null | WorkflowLayout

The starting point for the statuses in the workflow.

statuses: StatusLayoutUpdate[]

The statuses associated with this workflow.

transitions: TransitionUpdateDto[]

The transitions of this workflow.