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

Hierarchy (view full)

Properties

$CreationOptions?: EnumerationCreationOptions

Options to pass during the element creation

$ID: string

The unique id of the element.

$Type

The type of the element.

documentation: string
name: string
remoteSource: null | RemoteEnumerationSource

Methods