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

# Balances

> Kotlin Data Class

**Data Class**

```kotlin theme={null}
data class Balances(val nativeToken: TokenBalance, val usdc: TokenBalance, val tokens: List<TokenBalance>)
```

## Constructors

```kotlin theme={null}
constructor(nativeToken: TokenBalance, usdc: TokenBalance, tokens: List<TokenBalance>)
```

## Properties

### nativeToken

```kotlin theme={null}
val nativeToken: TokenBalance
```

### tokens

```kotlin theme={null}
val tokens: List<TokenBalance>
```

### usdc

```kotlin theme={null}
val usdc: TokenBalance
```
