> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cloud.coinbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# CamelToSnakeCaseNested

```ts theme={null}
type CamelToSnakeCaseNested<T> = T extends readonly any[] ? T : T extends object ? { [K in keyof T as K extends string ? CamelToSnakeCase<K> : K]: CamelToSnakeCaseNested<T[K]> } : T;
```

Convert a camel case object to a snake case object

## Type Parameters

| Type Parameter |
| -------------- |
| `T`            |
