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

| Property    | Type       | Description |
| ----------- | ---------- | ----------- |
| `applePay`  | `Boolean?` | -           |
| `card`      | `Boolean?` | -           |
| `googlePay` | `Boolean?` | -           |
