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 full)

Properties

Options to pass during the element creation

$ID: string

The unique id of the element.

$Type

The type of the element.

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

Methods

  • Returns void