OBJECT
ExpiredSubscription
Data about an inactive subscription to a broadcaster.
link GraphQL Schema definition
1 type ExpiredSubscription { 2 3 # The channel that the expired subscription belongs to. 4 : User 5 6 # The unique identifier. 7 : ID! 8 9 # Resolves the product that the expired subscription is to. 10 : SubscriptionProduct 11 12 # The total tenure of a user to a broadcaster. 13 : SubscriptionTenure! 14 15 }