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

    Interface EnumDescriptorProto

    Describes an enum type.

    interface EnumDescriptorProto {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "google.protobuf.EnumDescriptorProto";
        name?: string;
        options?: EnumOptions;
        reservedName: string[];
        reservedRange: EnumDescriptorProto_EnumReservedRange[];
        value: EnumValueDescriptorProto[];
        visibility?: SymbolVisibility;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

    • [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined

      Describes an enum type.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Describes an enum type.

            Returns unknown

      • undefined
    Index
    "[customJson]"?: () => unknown

    Returns a safe value for JSON logs.

    Type Declaration

      • (): unknown
      • Returns a safe value for JSON logs.

        Returns unknown

    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>

    Preserves protobuf fields that this SDK version does not recognize.

    $type: "google.protobuf.EnumDescriptorProto"

    Contains the fully qualified protobuf type name.

    name?: string

    Contains the name protobuf field.

    options?: EnumOptions

    Contains the options protobuf field.

    reservedName: string[]

    Reserved enum value names, which may not be reused. A given name may only be reserved once.

    Range of reserved numeric values. Reserved numeric values may not be used by enum values in the same enum declaration. Reserved ranges may not overlap.

    Contains the value protobuf field.

    visibility?: SymbolVisibility

    Support for export and local keywords on enums.