# shipping

From **Stripe API**.

- Type: `object`

## Properties

### `address`

- Required: false
- Type: `object`

### `carrier`

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

The delivery service that shipped a physical product, such as Fedex, UPS, USPS, etc.

### `name`

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

Recipient name.

### `phone`

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

Recipient phone (including extension).

### `tracking_number`

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

The tracking number for a physical product, obtained from the delivery service. If multiple tracking numbers were generated for this purchase, please separate them with commas.

## JSON Schema

```json
{"properties":{"address":{"$ref":"#/components/schemas/address"},"carrier":{"description":"The delivery service that shipped a physical product, such as Fedex, UPS, USPS, etc.","maxLength":5000,"nullable":true,"type":"string"},"name":{"description":"Recipient name.","maxLength":5000,"nullable":true,"type":"string"},"phone":{"description":"Recipient phone (including extension).","maxLength":5000,"nullable":true,"type":"string"},"tracking_number":{"description":"The tracking number for a physical product, obtained from the delivery service. If multiple tracking numbers were generated for this purchase, please separate them with commas.","maxLength":5000,"nullable":true,"type":"string"}},"title":"Shipping","type":"object","x-expandableFields":["address"]}
```
