# `Stripe.Params.PriceListParams.Recurring`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/price_list_params.ex#L46)

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.PriceListParams.Recurring{
  interval: String.t() | nil,
  meter: String.t() | nil,
  usage_type: String.t() | nil
}
```

* `interval` - Filter by billing frequency. Either `day`, `week`, `month` or `year`. Possible values: `day`, `month`, `week`, `year`.
* `meter` - Filter by the price's meter. Max length: 5000.
* `usage_type` - Filter by the usage type for this price. Can be either `metered` or `licensed`. Possible values: `licensed`, `metered`.

---

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