ENUM

UserPredictionEventRestriction

Restrictions on a user participating in a given Prediction Event.

link GraphQL Schema definition

1enum UserPredictionEventRestriction {
2
3# The user is restricted from participating because they have the ability to
4# manage Predictions on this channel.
5CAN_MANAGE_PREDICTIONS
6
7# The user is restricted from participating because their geographic location has
8# a blanket ban on Prediction participation.
9REGION_LOCKED
10
11# The user is restricted from participating because their geographic location has
12# a ban on Predictions for the specific game/category being played.
13CATEGORY_REGION_LOCKED
14}