# `Stripe.Resources.Subscription.BillingThresholds`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/subscription.ex#L285)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.Subscription.BillingThresholds{
  amount_gte: integer() | nil,
  reset_billing_cycle_anchor: boolean() | nil
}
```

* `amount_gte` - Monetary threshold that triggers the subscription to create an invoice Nullable.
* `reset_billing_cycle_anchor` - Indicates if the `billing_cycle_anchor` should be reset when a threshold is reached. If true, `billing_cycle_anchor` will be updated to the date/time the threshold was last reached; otherwise, the value will remain unchanged. This value may not be `true` if the subscription contains items with plans that have `aggregate_usage=last_ever`. Nullable.

---

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