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

    Interface Nanoflow

    interface Nanoflow {
        $CreationOptions?: NanoflowCreationOptions;
        $ID: string;
        $Type: "Microflows$Nanoflow";
        documentation: string;
        excluded: boolean;
        exportLevel: ExportLevel;
        flows: Flow[];
        markAsUsed: boolean;
        microflowReturnType: DataType;
        name: string;
        objectCollection: MicroflowObjectCollection;
        returnVariableName: string;
        addAnnotationFlow(): Promise<AnnotationFlow>;
        addSequenceFlow(
            options: SequenceFlowSchemaInitOptions,
        ): Promise<SequenceFlow>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: NanoflowCreationOptions

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Microflows$Nanoflow"

    The type of the element.

    documentation: string
    excluded: boolean
    exportLevel: ExportLevel
    flows: Flow[]
    markAsUsed: boolean
    microflowReturnType: DataType
    name: string
    objectCollection: MicroflowObjectCollection
    returnVariableName: string

    Methods