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

    Interface DataTransformer

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

    interface DataTransformer {
        $CreationOptions?: unknown;
        $ID: string;
        $Type: "DataTransformers$DataTransformer";
        $UnitID?: string;
        documentation: string;
        elements: StructureElement[];
        excluded: boolean;
        exportLevel: ExportLevel;
        name: string;
        rootElement: null | string;
        source: null | Source;
        steps: Step[];
        addStep(): Promise<Step>;
        addStructureAttribute(): Promise<StructureAttribute>;
        addStructureObject(): Promise<StructureObject>;
        addStructureValue(): Promise<StructureValue>;
        getStructureAttribute(name: string): undefined | StructureAttribute;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: unknown

    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: null | string
    source: null | Source
    steps: Step[]

    Methods

    • Returns Promise<Step>