OBJECT

SubscriptionSummary

Simple summary of subscription product.

link GraphQL Schema definition

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

link Required by