# delivery\_estimate

From **Stripe API**.

- Type: `object`

## Properties

### `date`

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

If `type` is `"exact"`, `date` will be the expected delivery date in the format YYYY-MM-DD.

### `earliest`

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

If `type` is `"range"`, `earliest` will be be the earliest delivery date in the format YYYY-MM-DD.

### `latest`

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

If `type` is `"range"`, `latest` will be the latest delivery date in the format YYYY-MM-DD.

### `type`

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

The type of estimate. Must be either `"range"` or `"exact"`.

## JSON Schema

```json
{"properties":{"date":{"description":"If `type` is `\"exact\"`, `date` will be the expected delivery date in the format YYYY-MM-DD.","maxLength":5000,"type":"string"},"earliest":{"description":"If `type` is `\"range\"`, `earliest` will be be the earliest delivery date in the format YYYY-MM-DD.","maxLength":5000,"type":"string"},"latest":{"description":"If `type` is `\"range\"`, `latest` will be the latest delivery date in the format YYYY-MM-DD.","maxLength":5000,"type":"string"},"type":{"description":"The type of estimate. Must be either `\"range\"` or `\"exact\"`.","maxLength":5000,"type":"string"}},"required":["type"],"title":"DeliveryEstimate","type":"object","x-expandableFields":[]}
```
