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

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.Subscription.PendingInvoiceItemInterval{
  interval: String.t() | nil,
  interval_count: integer() | nil
}
```

* `interval` - Specifies invoicing frequency. Either `day`, `week`, `month` or `year`. Possible values: `day`, `month`, `week`, `year`.
* `interval_count` - The number of intervals between invoices. For example, `interval=month` and `interval_count=3` bills every 3 months. Maximum of one year interval allowed (1 year, 12 months, or 52 weeks).

---

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