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

    Type Alias Element

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

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

    Properties

    elementType: string

    The Mendix Metamodel name of a model element, e.g. "DomainModels$Entity". You can find all the Metamodel names in the Mendix Model SDK documentation.

    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.