Interface WorkflowDefinition

interface WorkflowDefinition {
    appliesTo?: WorkflowDefinitionValidationLink[];
    description?: string;
    flowType?: "no_restriction" | "strict_neighbor";
    name: string;
    startOnEntityCreation?: boolean;
    steps: WorkflowStepProps[];
    sys: WorkflowDefinitionSysProps;
    delete(): Promise<void>;
    toPlainObject(): WorkflowDefinitionProps;
    update(): Promise<WorkflowDefinition>;
}

Hierarchy (view full)

Properties

description?: string
flowType?: "no_restriction" | "strict_neighbor"
name: string
startOnEntityCreation?: boolean

Methods