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

    Interface EnumerationValue

    interface EnumerationValue {
        $CreationOptions?: EnumerationValueCreationOptions;
        $ID: string;
        $Type: "Enumerations$EnumerationValue";
        caption: Text;
        image: null | string;
        name: string;
        remoteValue: null | RemoteEnumerationValue;
        delete(): void;
        getContainer(): Enumeration;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Enumerations$EnumerationValue"

    The type of the element.

    caption: Text
    image: null | string
    name: string
    remoteValue: null | RemoteEnumerationValue

    Methods

    • Returns void