# `Stripe.Resources.PaymentIntent.AmountDetails.Shipping`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/payment_intent.ex#L261)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.PaymentIntent.AmountDetails.Shipping{
  amount: integer() | nil,
  from_postal_code: String.t() | nil,
  to_postal_code: String.t() | nil
}
```

* `amount` - If a physical good is being shipped, the cost of shipping represented in the [smallest currency unit](https://docs.stripe.com/currencies#zero-decimal). An integer greater than or equal to 0. Nullable.
* `from_postal_code` - If a physical good is being shipped, the postal code of where it is being shipped from. At most 10 alphanumeric characters long, hyphens are allowed. Max length: 5000. Nullable.
* `to_postal_code` - If a physical good is being shipped, the postal code of where it is being shipped to. At most 10 alphanumeric characters long, hyphens are allowed. Max length: 5000. Nullable.

---

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