OBJECT

PlanBillingPeriod

The abstract billing period associated with a service plan.

link GraphQL Schema definition

1type PlanBillingPeriod {
2
3# The billing interval: month or year
4interval: BillingInterval
5
6# The number of "interval" units per billing period. i.e., if count is 2 and the
7# interval is monthly, then
8# billing will be every 2 months.
9count: Int
10
11}