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

    Interface Microflow

    interface Microflow {
        $CreationOptions?: MicroflowCreationOptions;
        $ID: string;
        $Type: "Microflows$Microflow";
        allowConcurrentExecution: boolean;
        applyEntityAccess: boolean;
        concurrencyErrorMessage: Text;
        concurrencyErrorMicroflow: null | string;
        documentation: string;
        excluded: boolean;
        exportLevel: ExportLevel;
        flows: Flow[];
        markAsUsed: boolean;
        microflowReturnType: DataType;
        name: string;
        objectCollection: MicroflowObjectCollection;
        parameters: MicroflowParameter[];
        returnVariableName: string;
        stableId: string;
        url: string;
        urlSearchParameters: string[];
        addAnnotationFlow(): Promise<AnnotationFlow>;
        addMicroflowParameter(
            options: MicroflowParameterCreationOptions,
        ): Promise<MicroflowParameter>;
        addSequenceFlow(
            options: SequenceFlowSchemaInitOptions,
        ): Promise<SequenceFlow>;
        getMicroflowParameter(name: string): undefined | MicroflowParameter;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: MicroflowCreationOptions

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Microflows$Microflow"

    The type of the element.

    allowConcurrentExecution: boolean
    applyEntityAccess: boolean
    concurrencyErrorMessage: Text
    concurrencyErrorMicroflow: null | string
    documentation: string
    excluded: boolean
    exportLevel: ExportLevel
    flows: Flow[]
    markAsUsed: boolean
    microflowReturnType: DataType
    name: string
    objectCollection: MicroflowObjectCollection
    parameters: MicroflowParameter[]
    returnVariableName: string
    stableId: string
    url: string
    urlSearchParameters: string[]

    Methods