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

# TokenAccountBalance

> Kotlin Data Class

**Data Class**

```kotlin theme={null}
data class TokenAccountBalance(val type: TokenAccountType, val amount: String, val rawAmount: String, val available: TokenAmount, val locked: TokenAmount)
```

## Constructors

```kotlin theme={null}
constructor(type: TokenAccountType, amount: String, rawAmount: String, available: TokenAmount, locked: TokenAmount)
```

## Properties

| Property    | Type               | Description |
| ----------- | ------------------ | ----------- |
| `amount`    | `String`           | -           |
| `available` | `TokenAmount`      | -           |
| `locked`    | `TokenAmount`      | -           |
| `rawAmount` | `String`           | -           |
| `type`      | `TokenAccountType` | -           |
