ENUM

SubscriptionTier

A channel could have multiple subscription products at varying tiers. Each value will always map to the respective tier for every channel that has the given tier available as a product.

Example: A channel with a "tier 2" subscription product will always have the tier represented as T_2000.

link GraphQL Schema definition

1enum SubscriptionTier {
2
3# Custom tier.
4CUSTOM
5
6# Subscribed with Twitch Prime.
7PRIME
8
9# Tier "1000".
10T_1000
11
12# Tier "2000".
13T_2000
14
15# Tier "3000".
16T_3000
17}