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

    Interface MLMappingDocument

    A unit is a container of elements, it can not contain other units.

    interface MLMappingDocument {
        $CreationOptions?: unknown;
        $ID: string;
        $Type: "MLMappings$MLMappingDocument";
        $UnitID?: string;
        documentation: string;
        excluded: boolean;
        exportLevel: ExportLevel;
        mlModelFileName: string;
        mlModelMappings: null | MLModelMappings;
        mlModelMetadata: MLModelMetadata[];
        name: string;
        addMLModelMetadata(): Promise<MLModelMetadata>;
        getMLModelMetadata(name: string): undefined | MLModelMetadata;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: unknown

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "MLMappings$MLMappingDocument"

    The type of the element.

    $UnitID?: string
    documentation: string
    excluded: boolean
    exportLevel: ExportLevel
    mlModelFileName: string
    mlModelMappings: null | MLModelMappings
    mlModelMetadata: MLModelMetadata[]
    name: string

    Methods