@mendix/extensions-api - v0.12.0
    Preparing search index...

    Interface Workflow

    A unit is a container of elements, it can not contain other units.

    interface Workflow {
        $CreationOptions?: WorkflowCreationOptions;
        $ID: string;
        $Type: "Workflows$Workflow";
        $UnitID?: string;
        adminPage: PageReference | null;
        annotation: Workflows.Annotation | null;
        documentation: string;
        dueDate: string | null;
        eventSubProcesses: EventSubProcess[];
        excluded: boolean;
        exportLevel: ExportLevel;
        flow: Workflows.Flow;
        name: string;
        onWorkflowEvent: WorkflowEventHandler[];
        parameter: Parameter;
        persistentId: string;
        title: string;
        workflowDescription: StringTemplate;
        workflowMetaData: WorkflowMetaData | null;
        workflowName: StringTemplate;
        workflowV2: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: WorkflowCreationOptions

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Workflows$Workflow"

    The type of the element.

    $UnitID?: string
    adminPage: PageReference | null
    annotation: Workflows.Annotation | null
    documentation: string
    dueDate: string | null
    eventSubProcesses: EventSubProcess[]
    excluded: boolean
    exportLevel: ExportLevel
    name: string
    onWorkflowEvent: WorkflowEventHandler[]
    parameter: Parameter
    persistentId: string
    title: string
    workflowDescription: StringTemplate
    workflowMetaData: WorkflowMetaData | null
    workflowName: StringTemplate
    workflowV2: boolean