OBJECT
SubscriptionSummary
Simple summary of subscription product.
link GraphQL Schema definition
1 type SubscriptionSummary { 2 3 #   Emotes included with subscription. 4 : [Emote]  5 6 #   Subscription product id, for now is the same as the ticket product id. 7 : ID!  8 9 #   Emote modifiers available at this tier. 10 : [EmoteModifier!]  11 12 #   Channel's custom name for their subscription. 13 : String!  14 15 #   Pricing information about subscription, filtered to what is available for user. 16 : [SubscriptionOffer!]  17 18 #   Info specific to the user. 19 : SubscriptionSummarySelf!  20 21 #   Tier of subscription, either 1, 2, or 3. 22 : SubscriptionSummaryTier!  23 24 #   URL for checkout page. 25 : String!  26 27 }