OBJECT

ExpiredSubscription

Data about an inactive subscription to a broadcaster.

link GraphQL Schema definition

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