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

    Interface DescriptorProto

    Describes a message type.

    interface DescriptorProto {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "google.protobuf.DescriptorProto";
        enumType: EnumDescriptorProto[];
        extension: FieldDescriptorProto[];
        extensionRange: DescriptorProto_ExtensionRange[];
        field: FieldDescriptorProto[];
        name?: string;
        nestedType: DescriptorProto[];
        oneofDecl: OneofDescriptorProto[];
        options?: MessageOptions;
        reservedName: string[];
        reservedRange: DescriptorProto_ReservedRange[];
        visibility?: SymbolVisibility;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      Describes a message type.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Describes a message 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.DescriptorProto"

    Contains the fully qualified protobuf type name.

    Contains the enum_type protobuf field.

    Contains the extension protobuf field.

    Contains the extension_range protobuf field.

    Contains the field protobuf field.

    name?: string

    Contains the name protobuf field.

    nestedType: DescriptorProto[]

    Contains the nested_type protobuf field.

    Contains the oneof_decl protobuf field.

    options?: MessageOptions

    Contains the options protobuf field.

    reservedName: string[]

    Reserved field names, which may not be used by fields in the same message. A given name may only be reserved once.

    Contains the reserved_range protobuf field.

    visibility?: SymbolVisibility

    Support for export and local keywords on enums.