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

# Transfer

> Kotlin Data Class

**Data Class**

```kotlin theme={null}
data class Transfer(val id: String, val type: TransferType, val fromAddress: String, val toAddress: String, val txHash: String, val tokenSymbol: String?, val amount: String, val timestamp: Long)
```

## Constructors

```kotlin theme={null}
constructor(id: String, type: TransferType, fromAddress: String, toAddress: String, txHash: String, tokenSymbol: String?, amount: String, timestamp: Long)
```

## Properties

| Property      | Type           | Description                                         |
| ------------- | -------------- | --------------------------------------------------- |
| `amount`      | `String`       | Human-readable transfer amount                      |
| `fromAddress` | `String`       | -                                                   |
| `id`          | `String`       | The transfer identifier                             |
| `timestamp`   | `Long`         | Unix epoch milliseconds when the transfer occurred  |
| `toAddress`   | `String`       | -                                                   |
| `tokenSymbol` | `String?`      | Symbol of the token transferred, or null if unknown |
| `txHash`      | `String`       | On-chain transaction hash                           |
| `type`        | `TransferType` | -                                                   |
