# customer\_acceptance

From **Stripe API**.

- Type: `object`

## Properties

### `accepted_at`

- Required: false
- Type: `integer`
- Format: `unix-time`
- Nullable: true

The time at which the customer accepted the Mandate.

### `offline`

- Required: false
- Type: `object`

### `online`

- Required: false
- Type: `object`

### `type`

- Required: true
- Type: `string`
- Allowed values: `"offline"`, `"online"`

The type of customer acceptance information included with the Mandate. One of `online` or `offline`.

## JSON Schema

```json
{"properties":{"accepted_at":{"description":"The time at which the customer accepted the Mandate.","format":"unix-time","nullable":true,"type":"integer"},"offline":{"$ref":"#/components/schemas/offline_acceptance"},"online":{"$ref":"#/components/schemas/online_acceptance"},"type":{"description":"The type of customer acceptance information included with the Mandate. One of `online` or `offline`.","enum":["offline","online"],"type":"string"}},"required":["type"],"title":"customer_acceptance","type":"object","x-expandableFields":["offline","online"]}
```
