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

    Type Alias Element

    Represents a mendix metamodel element, such as an entity or a document.

    type Element = {
        id: string;
        module: string;
        name: string;
        sdkName: string;
    }
    Index

    Properties

    Properties

    id: string

    The unique identifier of this model element.

    module: string

    The name of a module an element belongs to.

    name: string

    The name of a model element.

    sdkName: string

    The Mendix Metamodel SDK name of a model element. E.g. "DomainModels$Entity" or "Pages$Page". You can find the SDK names in the Mendix Model SDK documentation.