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

    Interface Workflow

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

    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.

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

    Methods