OBJECT

SubscriptionPurchase

A user's subscription purchase details, part of the Subscription Checkout workflow.

link GraphQL Schema definition

1type SubscriptionPurchase {
2
3# A compatible purchase exists if this user bought a subscription product of a
4# different tier for the
5# channel in question.
6#
7# i.e. this user doesn't have this subscription purchase for the $4.99 sub but
8# they do have a
9#
10# compatible purchase for the $9.99 subscription.
11compatiblePurchases: [SubscriptionPurchaseDetails!]
12
13# The purchase details for a Twitch purchaser - Subscription product combination.
14details: SubscriptionPurchaseDetails
15
16}