# `Stripe.Params.ShippingRateUpdateParams`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/shipping_rate_update_params.ex#L2)

Parameters for shipping rate update.

# `t`

```elixir
@type t() :: %Stripe.Params.ShippingRateUpdateParams{
  active: boolean() | nil,
  expand: [String.t()] | nil,
  fixed_amount: Stripe.Params.ShippingRateUpdateParams.FixedAmount.t() | nil,
  metadata: map() | nil,
  tax_behavior: String.t() | nil
}
```

* `active` - Whether the shipping rate can be used for new purchases. Defaults to `true`.
* `expand` - Specifies which fields in the response should be expanded.
* `fixed_amount` - Describes a fixed amount to charge for shipping. Must be present if type is `fixed_amount`.
* `metadata` - Set of [key-value pairs](https://docs.stripe.com/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
* `tax_behavior` - Specifies whether the rate is considered inclusive of taxes or exclusive of taxes. One of `inclusive`, `exclusive`, or `unspecified`. Possible values: `exclusive`, `inclusive`, `unspecified`.

---

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