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

    Interface UninterpretedOption

    A message representing a option the parser does not recognize. This only appears in options protos created by the compiler::Parser class. DescriptorPool resolves these when building Descriptor objects. Therefore, options protos in descriptor objects (e.g. returned by Descriptor::options(), or produced by Descriptor::CopyTo()) will never have UninterpretedOptions in them.

    interface UninterpretedOption {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "google.protobuf.UninterpretedOption";
        aggregateValue?: string;
        doubleValue?: number;
        identifierValue?: string;
        name: UninterpretedOption_NamePart[];
        negativeIntValue?: Long;
        positiveIntValue?: Long;
        stringValue?: Uint8Array<ArrayBufferLike>;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      A message representing a option the parser does not recognize. This only appears in options protos created by the compiler::Parser class. DescriptorPool resolves these when building Descriptor objects. Therefore, options protos in descriptor objects (e.g. returned by Descriptor::options(), or produced by Descriptor::CopyTo()) will never have UninterpretedOptions in them.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • A message representing a option the parser does not recognize. This only appears in options protos created by the compiler::Parser class. DescriptorPool resolves these when building Descriptor objects. Therefore, options protos in descriptor objects (e.g. returned by Descriptor::options(), or produced by Descriptor::CopyTo()) will never have UninterpretedOptions in them.

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

    Contains the fully qualified protobuf type name.

    aggregateValue?: string

    Contains the aggregate_value protobuf field.

    doubleValue?: number

    Contains the double_value protobuf field.

    identifierValue?: string

    The value of the uninterpreted option, in whatever type the tokenizer identified it as during parsing. Exactly one of these should be set.

    Contains the name protobuf field.

    negativeIntValue?: Long

    Contains the negative_int_value protobuf field.

    positiveIntValue?: Long

    Contains the positive_int_value protobuf field.

    stringValue?: Uint8Array<ArrayBufferLike>

    Contains the string_value protobuf field.