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

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.Issuing.CardCreateParams.SpendingControls.SpendingLimits{
  amount: integer() | nil,
  categories: [String.t()] | nil,
  interval: String.t() | nil
}
```

* `amount` - Maximum amount allowed to spend per interval.
* `categories` - Array of strings containing [categories](https://docs.stripe.com/api#issuing_authorization_object-merchant_data-category) this limit applies to. Omitting this field will apply the limit to all categories.
* `interval` - Interval (or event) to which the amount applies. Possible values: `all_time`, `daily`, `monthly`, `per_authorization`, `weekly`, `yearly`.

---

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