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

    Interface CallWorkflowActivity

    interface CallWorkflowActivity {
        $CreationOptions?: CallWorkflowActivityCreationOptions;
        $ID: string;
        $Type: "Workflows$CallWorkflowActivity";
        annotation: null | Workflows.Annotation;
        boundaryEvents: BoundaryEvent[];
        caption: string;
        executeAsync: boolean;
        name: string;
        parameterMappings: WorkflowCallParameterMapping[];
        persistentId: string;
        relativeMiddlePoint: Location;
        size: Size;
        workflow: null | string;
        addInterruptingTimerBoundaryEvent(): Promise<
            InterruptingTimerBoundaryEvent,
        >;
        addNonInterruptingTimerBoundaryEvent(): Promise<
            NonInterruptingTimerBoundaryEvent,
        >;
        addWorkflowCallParameterMapping(): Promise<WorkflowCallParameterMapping>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Workflows$CallWorkflowActivity"

    The type of the element.

    annotation: null | Workflows.Annotation
    boundaryEvents: BoundaryEvent[]
    caption: string
    executeAsync: boolean
    name: string
    parameterMappings: WorkflowCallParameterMapping[]
    persistentId: string
    relativeMiddlePoint: Location
    size: Size
    workflow: null | string

    Methods