OBJECT
SubCountSeriesDataPoint
A single data point in the time series.
link GraphQL Schema definition
1 type SubCountSeriesDataPoint { 2 3 # The breakdown of which tiers contributed how much to the total gift sub count. 4 : [SubCountTierDataPoint!]! 5 6 # The breakdown of which tiers contributed how much to the total multi month sub 7 # count. 8 : [SubCountTierDataPoint!]! 9 10 # The breakdown of which tiers contributed how much to the total paid sub count. 11 : [SubCountTierDataPoint!]! 12 13 # The timestamp associated with this data point. 14 : Time! 15 16 # The total number of gifted subscriptions captured during this period. 17 : Int! 18 19 # The total number of multi month subscriptions captured during this period. 20 : Int! 21 22 # The number of paid subscriptions captured during this period. 23 : Int! 24 25 # The number of Prime subscriptions captured during this period. 26 : Int! 27 28 }