# `Stripe.Resources.Issuing.Card.SpendingControls.SpendingLimits`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/issuing/card.ex#L237)

Nested struct within the parent resource.

# `t`

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

* `amount` - Maximum amount allowed to spend per interval. This amount is in the card's currency and in the [smallest currency unit](https://docs.stripe.com/currencies#zero-decimal).
* `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. Nullable.
* `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*
