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

    Interface ExtensionRangeOptions_Declaration

    Represents the google.protobuf.ExtensionRangeOptions.Declaration protobuf message.

    interface ExtensionRangeOptions_Declaration {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "google.protobuf.ExtensionRangeOptions.Declaration";
        fullName?: string;
        number?: number;
        repeated?: boolean;
        reserved?: boolean;
        type?: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      Represents the google.protobuf.ExtensionRangeOptions.Declaration protobuf message.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Represents the google.protobuf.ExtensionRangeOptions.Declaration protobuf message.

            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.ExtensionRangeOptions.Declaration"

    Contains the fully qualified protobuf type name.

    fullName?: string

    The fully-qualified name of the extension field. There must be a leading dot in front of the full name.

    number?: number

    The extension number declared within the extension range.

    repeated?: boolean

    If true, indicates that the extension must be defined as repeated. Otherwise the extension must be defined as optional.

    reserved?: boolean

    If true, indicates that the number is reserved in the extension range, and any extension field with the number will fail to compile. Set this when a declared extension field is deleted.

    type?: string

    The fully-qualified type name of the extension field. Unlike Metadata.type, Declaration.type must have a leading dot for messages and enums.