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

# CheckoutAllowedMethods

> Kotlin Data Class

**Data Class**

```kotlin theme={null}
data class CheckoutAllowedMethods(val googlePay: Boolean? = true, val applePay: Boolean? = true, val card: Boolean? = true)
```

## Constructors

```kotlin theme={null}
constructor(googlePay: Boolean? = true, applePay: Boolean? = true, card: Boolean? = true)
```

## Properties

### applePay

```kotlin theme={null}
val applePay: Boolean? = true
```

### card

```kotlin theme={null}
val card: Boolean? = true
```

### googlePay

```kotlin theme={null}
val googlePay: Boolean? = true
```
