# `Stripe.Resources.Quote.Computed.Recurring`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/quote.ex#L202)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.Quote.Computed.Recurring{
  amount_subtotal: integer() | nil,
  amount_total: integer() | nil,
  interval: String.t() | nil,
  interval_count: integer() | nil,
  total_details:
    Stripe.Resources.Quote.Computed.Recurring.TotalDetails.t() | nil
}
```

* `amount_subtotal` - Total before any discounts or taxes are applied.
* `amount_total` - Total after discounts and taxes are applied.
* `interval` - The frequency at which a subscription is billed. One of `day`, `week`, `month` or `year`. Possible values: `day`, `month`, `week`, `year`.
* `interval_count` - The number of intervals (specified in the `interval` attribute) between subscription billings. For example, `interval=month` and `interval_count=3` bills every 3 months.
* `total_details`

---

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