# `Stripe.Resources.ShippingRate.FixedAmount`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/shipping_rate.ex#L108)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.ShippingRate.FixedAmount{
  amount: integer() | nil,
  currency: String.t() | nil,
  currency_options:
    %{
      required(String.t()) =&gt;
        Stripe.Resources.ShippingRate.FixedAmount.CurrencyOptions.t()
    }
    | nil
}
```

* `amount` - A non-negative integer in cents representing how much to charge.
* `currency` - Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies). Format: ISO 4217 currency code.
* `currency_options` - Shipping rates defined in each available currency option. Each key must be a three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html) and a [supported currency](https://stripe.com/docs/currencies).

---

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