ENUM

RegistrationType

The registration type signifies the policy for participants to join the competition.

link GraphQL Schema definition

1enum RegistrationType {
2
3# Competition that any Twitch user can join.
4OPEN
5
6# Competition that only invited participants can join.
7INVITATIONAL
8
9# Open competition where only followers of the channel can join.
10FOLLOWERS
11
12# Open competition where only subscribers of the channel can join.
13SUBSCRIBERS
14
15# Open competition where only followers and subscribers of the channel can join.
16FOLLOWER_AND_SUBSCRIBERS
17
18# Unknown type.
19UNKNOWN
20}