> ## 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

| Property      | Type                 | Description |
| ------------- | -------------------- | ----------- |
| `nativeToken` | `TokenBalance`       | -           |
| `tokens`      | `List<TokenBalance>` | -           |
| `usdc`        | `TokenBalance`       | -           |
