# `Stripe.Resources.Issuing.Card.Shipping`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/issuing/card.ex#L124)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.Issuing.Card.Shipping{
  address: Stripe.Resources.Address.t() | nil,
  address_validation:
    Stripe.Resources.Issuing.Card.Shipping.AddressValidation.t() | nil,
  carrier: String.t() | nil,
  customs: Stripe.Resources.Issuing.Card.Shipping.Customs.t() | nil,
  eta: integer() | nil,
  name: String.t() | nil,
  phone_number: String.t() | nil,
  require_signature: boolean() | nil,
  service: String.t() | nil,
  status: String.t() | nil,
  tracking_number: String.t() | nil,
  tracking_url: String.t() | nil,
  type: String.t() | nil
}
```

* `address`
* `address_validation` - Address validation details for the shipment. Nullable.
* `carrier` - The delivery company that shipped a card. Possible values: `dhl`, `fedex`, `royal_mail`, `usps`. Nullable.
* `customs` - Additional information that may be required for clearing customs. Nullable.
* `eta` - A unix timestamp representing a best estimate of when the card will be delivered. Format: Unix timestamp. Nullable.
* `name` - Recipient name. Max length: 5000.
* `phone_number` - The phone number of the receiver of the shipment. Our courier partners will use this number to contact you in the event of card delivery issues. For individual shipments to the EU/UK, if this field is empty, we will provide them with the phone number provided when the cardholder was initially created. Max length: 5000. Nullable.
* `require_signature` - Whether a signature is required for card delivery. This feature is only supported for US users. Standard shipping service does not support signature on delivery. The default value for standard shipping service is false and for express and priority services is true. Nullable.
* `service` - Shipment service, such as `standard` or `express`. Possible values: `express`, `priority`, `standard`.
* `status` - The delivery status of the card. Possible values: `canceled`, `delivered`, `failure`, `pending`, `returned`, `shipped`, `submitted`. Nullable.
* `tracking_number` - A tracking number for a card shipment. Max length: 5000. Nullable.
* `tracking_url` - A link to the shipping carrier's site where you can view detailed information about a card shipment. Max length: 5000. Nullable.
* `type` - Packaging options. Possible values: `bulk`, `individual`.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
