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

    Interface MethodDescriptorProto

    Describes a method of a service.

    interface MethodDescriptorProto {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "google.protobuf.MethodDescriptorProto";
        clientStreaming?: boolean;
        inputType?: string;
        name?: string;
        options?: MethodOptions;
        outputType?: string;
        serverStreaming?: boolean;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      Describes a method of a service.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Describes a method of a service.

            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.MethodDescriptorProto"

    Contains the fully qualified protobuf type name.

    clientStreaming?: boolean

    Identifies if client streams multiple client messages

    inputType?: string

    Input and output type names. These are resolved in the same way as FieldDescriptorProto.type_name, but must refer to a message type.

    name?: string

    Contains the name protobuf field.

    options?: MethodOptions

    Contains the options protobuf field.

    outputType?: string

    Contains the output_type protobuf field.

    serverStreaming?: boolean

    Identifies if server streams multiple server messages