OBJECT

UserPredictionSettings

Options and preferences for how the user participates in Predictions Events. Users can only view their own Predictions Settings.

link GraphQL Schema definition

1type UserPredictionSettings {
2
3# Whether the user has accepted the latest Predictions Terms of Service.
4hasAcceptedTOS: Boolean!
5
6# Whether the user is in a region that is restricted from participation in making
7# predictions.
8isInRestrictedRegion: Boolean
9
10# Whether the user has opted to display a temporary chat badge indicating their
11# choices during Predictions Events.
12isTemporaryChatBadgeEnabled: Boolean!
13
14}