# issuing\_card\_shipping

From **Stripe API**.

- Type: `object`

## Properties

### `address`

- Required: true
- Type: `object`

### `carrier`

- Required: false
- Type: `string`
- Nullable: true
- Allowed values: `"dhl"`, `"fedex"`, `"royal_mail"`, `"usps"`

The delivery company that shipped a card.

### `eta`

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

A unix timestamp representing a best estimate of when the card will be delivered.

### `name`

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

Recipient name.

### `service`

- Required: true
- Type: `string`
- Allowed values: `"express"`, `"priority"`, `"standard"`

Shipment service, such as `standard` or `express`.

### `status`

- Required: false
- Type: `string`
- Nullable: true
- Allowed values: `"canceled"`, `"delivered"`, `"failure"`, `"pending"`, `"returned"`, `"shipped"`

The delivery status of the card.

### `tracking_number`

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

A tracking number for a card shipment.

### `tracking_url`

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

A link to the shipping carrier's site where you can view detailed information about a card shipment.

### `type`

- Required: true
- Type: `string`
- Allowed values: `"bulk"`, `"individual"`

Packaging options.

## JSON Schema

```json
{"properties":{"address":{"$ref":"#/components/schemas/address"},"carrier":{"description":"The delivery company that shipped a card.","enum":["dhl","fedex","royal_mail","usps"],"nullable":true,"type":"string"},"eta":{"description":"A unix timestamp representing a best estimate of when the card will be delivered.","format":"unix-time","nullable":true,"type":"integer"},"name":{"description":"Recipient name.","maxLength":5000,"type":"string"},"service":{"description":"Shipment service, such as `standard` or `express`.","enum":["express","priority","standard"],"type":"string","x-stripeBypassValidation":true},"status":{"description":"The delivery status of the card.","enum":["canceled","delivered","failure","pending","returned","shipped"],"nullable":true,"type":"string"},"tracking_number":{"description":"A tracking number for a card shipment.","maxLength":5000,"nullable":true,"type":"string"},"tracking_url":{"description":"A link to the shipping carrier's site where you can view detailed information about a card shipment.","maxLength":5000,"nullable":true,"type":"string"},"type":{"description":"Packaging options.","enum":["bulk","individual"],"type":"string"}},"required":["address","name","service","type"],"title":"IssuingCardShipping","type":"object","x-expandableFields":["address"]}
```
