@nebius/js-sdk - v0.2.54
    Preparing search index...

    Interface EnumInstanceInterface

    Defines the minimum shape of an enum value stored in a Registry.

    interface EnumInstanceInterface {
        "[ENUM_VALUE_META]"?: EnumValueMeta;
        code: number;
        name: string;
        toNumber(): number;
        toString(): string;
    }
    Index
    "[ENUM_VALUE_META]"?: EnumValueMeta

    Contains the enum value meta.

    code: number

    Contains the code.

    name: string

    Contains the name.