Data Classes
CheckoutRecipient
Kotlin Data Class
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Kotlin Data Class
data class CheckoutRecipient(val walletAddress: String? = null, val email: String? = null)
constructor(walletAddress: String? = null, email: String? = null)
| Property | Type | Description |
|---|---|---|
email | String? | - |
walletAddress | String? | - |
Was this page helpful?
