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

    Interface Enumeration

    interface Enumeration {
        $CreationOptions?: EnumerationCreationOptions;
        $ID: string;
        $Type: "Enumerations$Enumeration";
        documentation: string;
        excluded: boolean;
        exportLevel: ExportLevel;
        name: string;
        remoteSource: null | RemoteEnumerationSource;
        values: EnumerationValue[];
        addEnumerationValue(
            options: EnumerationValueCreationOptions,
        ): Promise<EnumerationValue>;
        getEnumerationValue(name: string): undefined | EnumerationValue;
    }

    Hierarchy

    • Document
      • Enumeration
    Index

    Properties

    $CreationOptions?: EnumerationCreationOptions

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Enumerations$Enumeration"

    The type of the element.

    documentation: string
    excluded: boolean
    exportLevel: ExportLevel
    name: string
    remoteSource: null | RemoteEnumerationSource

    Methods