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

    Interface DataTransformer

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

    interface DataTransformer {
        $CreationOptions?: DataTransformerCreationOptions;
        $ID: string;
        $Type: "DataTransformers$DataTransformer";
        $UnitID?: string;
        documentation: string;
        elements: StructureElement[];
        excluded: boolean;
        exportLevel: ExportLevel;
        name: string;
        rootElement: string | null;
        source: Source | null;
        steps: Step[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "DataTransformers$DataTransformer"

    The type of the element.

    $UnitID?: string
    documentation: string
    elements: StructureElement[]
    excluded: boolean
    exportLevel: ExportLevel
    name: string
    rootElement: string | null
    source: Source | null
    steps: Step[]