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

    Interface FieldOptions_FeatureSupport

    Information about the support window of a feature.

    interface FieldOptions_FeatureSupport {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "google.protobuf.FieldOptions.FeatureSupport";
        deprecationWarning?: string;
        editionDeprecated?: Edition;
        editionIntroduced?: Edition;
        editionRemoved?: Edition;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      Information about the support window of a feature.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Information about the support window of a feature.

            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.FieldOptions.FeatureSupport"

    Contains the fully qualified protobuf type name.

    deprecationWarning?: string

    The deprecation warning text if this feature is used after the edition it was marked deprecated in.

    editionDeprecated?: Edition

    The edition this feature becomes deprecated in. Using this after this edition may trigger warnings.

    editionIntroduced?: Edition

    The edition that this feature was first available in. In editions earlier than this one, the default assigned to EDITION_LEGACY will be used, and proto files will not be able to override it.

    editionRemoved?: Edition

    The edition this feature is no longer available in. In editions after this one, the last default assigned will be used, and proto files will not be able to override it.