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

# CheckoutRecipient

> Kotlin Data Class

**Data Class**

```kotlin theme={null}
data class CheckoutRecipient(val walletAddress: String? = null, val email: String? = null)
```

## Constructors

```kotlin theme={null}
constructor(walletAddress: String? = null, email: String? = null)
```

## Properties

### email

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

### walletAddress

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