# billing\_details

From **Stripe API**.

- Type: `object`

## Properties

### `address`

- Required: false
- Nullable: true

Billing address.

### `email`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

Email address.

### `name`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

Full name.

### `phone`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

Billing phone number (including extension).

## JSON Schema

```json
{"properties":{"address":{"anyOf":[{"$ref":"#/components/schemas/address"}],"description":"Billing address.","nullable":true},"email":{"description":"Email address.","maxLength":5000,"nullable":true,"type":"string"},"name":{"description":"Full name.","maxLength":5000,"nullable":true,"type":"string"},"phone":{"description":"Billing phone number (including extension).","maxLength":5000,"nullable":true,"type":"string"}},"title":"billing_details","type":"object","x-expandableFields":["address"]}
```
