ENUM

SubscriptionPlatform

SubscriptionPlatform enumerates platform options such as WEB, IOS, ANDROID.

link GraphQL Schema definition

1enum SubscriptionPlatform {
2
3# Unknown or no platform.
4NONE
5
6# Access from the browser. ).
7WEB
8
9# Access from the Twitch iOS application.
10IOS
11
12# Access from the Twitch Android application.
13ANDROID
14
15# Access from all Twitch Mobile applications (ANDROID + IOS).
16MOBILE_ALL
17}