OBJECT

SubCountSeriesDataPoint

A single data point in the time series.

link GraphQL Schema definition

1type SubCountSeriesDataPoint {
2
3# The breakdown of which tiers contributed how much to the total gift sub count.
4giftSubTierBreakdown: [SubCountTierDataPoint!]!
5
6# The breakdown of which tiers contributed how much to the total multi month sub
7# count.
8multiMonthSubTierBreakdown: [SubCountTierDataPoint!]!
9
10# The breakdown of which tiers contributed how much to the total paid sub count.
11paidSubTierBreakdown: [SubCountTierDataPoint!]!
12
13# The timestamp associated with this data point.
14timeStamp: Time!
15
16# The total number of gifted subscriptions captured during this period.
17totalGiftSubCount: Int!
18
19# The total number of multi month subscriptions captured during this period.
20totalMultiMonthSubCount: Int!
21
22# The number of paid subscriptions captured during this period.
23totalPaidSubCount: Int!
24
25# The number of Prime subscriptions captured during this period.
26totalPrimeSubCount: Int!
27
28}