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

    Interface CallExternalAction

    interface CallExternalAction {
        $CreationOptions?: CallExternalActionCreationOptions;
        $ID: string;
        $Type: "Microflows$CallExternalAction";
        errorHandlingType: ErrorHandlingType;
        includedAssociations: IncludedAssociation[];
        name: string;
        parameterMappings: ExternalActionParameterMapping[];
        variableDataType: DataType;
        variableName: string;
        addExternalActionParameterMapping(): Promise<
            ExternalActionParameterMapping,
        >;
        addIncludedAssociation(): Promise<IncludedAssociation>;
        delete(): void;
        getContainer(): ActionActivity;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Microflows$CallExternalAction"

    The type of the element.

    errorHandlingType: ErrorHandlingType
    includedAssociations: IncludedAssociation[]
    name: string
    parameterMappings: ExternalActionParameterMapping[]
    variableDataType: DataType
    variableName: string

    Methods