# `Stripe.Params.Issuing.CardCreateParams.Shipping`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/issuing/card_create_params.ex#L73)

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.Issuing.CardCreateParams.Shipping{
  address: Stripe.Params.Issuing.CardCreateParams.Shipping.Address.t() | nil,
  address_validation:
    Stripe.Params.Issuing.CardCreateParams.Shipping.AddressValidation.t() | nil,
  customs: Stripe.Params.Issuing.CardCreateParams.Shipping.Customs.t() | nil,
  name: String.t() | nil,
  phone_number: String.t() | nil,
  require_signature: boolean() | nil,
  service: String.t() | nil,
  type: String.t() | nil
}
```

* `address` - The address that the card is shipped to.
* `address_validation` - Address validation settings.
* `customs` - Customs information for the shipment.
* `name` - The name printed on the shipping label when shipping the card. Max length: 5000.
* `phone_number` - Phone number of the recipient of the shipment.
* `require_signature` - Whether a signature is required for card delivery.
* `service` - Shipment service. Possible values: `express`, `priority`, `standard`.
* `type` - Packaging options. Possible values: `bulk`, `individual`.

---

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