A workflow with transition rules.

interface WorkflowTransitionRules {
    conditions?: AppWorkflowTransitionRule[];
    postFunctions?: AppWorkflowTransitionRule[];
    validators?: AppWorkflowTransitionRule[];
    workflowId: WorkflowId;
}

Properties

The list of conditions within the workflow.

postFunctions?: AppWorkflowTransitionRule[]

The list of post functions within the workflow.

The list of validators within the workflow.

workflowId: WorkflowId

Properties that identify a workflow.