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

    Interface FieldPath

    FieldPath provides a path to a nested protobuf field.

    This message provides enough information to render a dotted field path even without protobuf descriptors. It also provides enough information to resolve a nested field through unknown wire data.

    interface FieldPath {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "buf.validate.FieldPath";
        elements: FieldPathElement[];
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      FieldPath provides a path to a nested protobuf field.

      This message provides enough information to render a dotted field path even without protobuf descriptors. It also provides enough information to resolve a nested field through unknown wire data.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • FieldPath provides a path to a nested protobuf field.

            This message provides enough information to render a dotted field path even without protobuf descriptors. It also provides enough information to resolve a nested field through unknown wire data.

            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: "buf.validate.FieldPath"

    Contains the fully qualified protobuf type name.

    elements: FieldPathElement[]

    elements contains each element of the path, starting from the root and recursing downward.