The details of the workflows to create.

interface WorkflowCreate {
    description?: string;
    name: string;
    startPointLayout?: 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?: WorkflowLayout
statuses: StatusLayoutUpdate[]

The statuses associated with this workflow.

transitions: TransitionUpdateDTO[]

The transitions of this workflow.