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

    Interface CallMicroflowTask

    interface CallMicroflowTask {
        $CreationOptions?: CallMicroflowTaskCreationOptions;
        $ID: string;
        $Type: "Workflows$CallMicroflowTask";
        annotation: null | Workflows.Annotation;
        boundaryEvents: BoundaryEvent[];
        caption: string;
        microflow: null | string;
        name: string;
        outcomes: ConditionOutcome[];
        parameterMappings: Workflows.MicroflowCallParameterMapping[];
        persistentId: string;
        relativeMiddlePoint: Location;
        size: Size;
        addBooleanConditionOutcome(): Promise<BooleanConditionOutcome>;
        addEnumerationValueConditionOutcome(): Promise<
            EnumerationValueConditionOutcome,
        >;
        addInterruptingTimerBoundaryEvent(): Promise<
            InterruptingTimerBoundaryEvent,
        >;
        addMicroflowCallParameterMapping(): Promise<
            Workflows.MicroflowCallParameterMapping,
        >;
        addNonInterruptingTimerBoundaryEvent(): Promise<
            NonInterruptingTimerBoundaryEvent,
        >;
        addVoidConditionOutcome(): Promise<VoidConditionOutcome>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Workflows$CallMicroflowTask"

    The type of the element.

    annotation: null | Workflows.Annotation
    boundaryEvents: BoundaryEvent[]
    caption: string
    microflow: null | string
    name: string
    outcomes: ConditionOutcome[]
    persistentId: string
    relativeMiddlePoint: Location
    size: Size

    Methods