OBJECT

LeaderboardSettings

Partner dashboard settings for the bits cheering and sub gifting leaderboards.

link GraphQL Schema definition

1type LeaderboardSettings {
2
3# The default leaderboard the user wants to show.
4defaultLeaderboard: LeaderboardType!
5
6# Flag that is true if the user has bits cheering leaderboards turned on.
7isCheerEnabled: Boolean!
8
9# Flag that is true if the user has sub gifting leaderboards turned on.
10isSubGiftEnabled: Boolean!
11
12# The time period the user wants the leaderboard to be displayed as.
13timePeriod: LeaderboardTimePeriodType!
14
15}