Options for creating an Enumeration.

interface EnumerationCreationOptions {
    name: string;
    values?: EnumerationValueCreationOptions[];
}

Properties

Properties

name: string

The name of the enumeration.

The values of the enumeration.