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

### amount

```kotlin theme={null}
val amount: String
```

### fromAddress

```kotlin theme={null}
val fromAddress: String
```

### id

```kotlin theme={null}
val id: String
```

### timestamp

```kotlin theme={null}
val timestamp: Long
```

### toAddress

```kotlin theme={null}
val toAddress: String
```

### tokenSymbol

```kotlin theme={null}
val tokenSymbol: String?
```

### txHash

```kotlin theme={null}
val txHash: String
```

### type

```kotlin theme={null}
val type: TransferType
```
