OBJECT
CommunityPointsChannelEarningSettings
Information on how points are earned by viewers in a specific channel.
link GraphQL Schema definition
1 type CommunityPointsChannelEarningSettings { 2 3 # The average number of points per hour earned by a regular (non-sub) user on this 4 # channel. 5 : Int! 6 7 # The average number of points per hour earned by a subscriber on this channel. 8 : Int! @deprecated( reason: "Front-end messaging will update to display base averagePointsPerHour value and multipliers instead." ) 9 10 # How many points are earned for cheering in a channel. 11 : Int! 12 13 # How many minutes will pass in between bonus claims becoming available. 14 : Int! 15 16 # How many points are earned for clicking a bonus claim. 17 : Int! 18 19 # How many points are earned for following the channel. 20 : Int! 21 22 # A unique identifier. 23 : ID! 24 25 # The possible multipliers users can have on earning points. 26 : [CommunityPointsMultiplier!]! 27 28 # How many minutes must be watched to earn points for passively watching the 29 # channel. 30 : Int! 31 32 # How many points are earned for passively watching the channel. 33 : Int! 34 35 # How many points are earned for following a raid by the channel. 36 : Int! 37 38 # The earning multiplier applied to subscribers to the channel. 39 # This multiplier only applies to "watch" and "claim" actions. 40 : Float! @deprecated( reason: "This is the T1 specific multipler value, which is now included in multipliers list." ) 41 42 # How many points are earned for gifting a subscription in a channel. 43 : Int! 44 45 # How many points are earned for watching consecutive streams. 46 # This list will be sorted from shortest duration to longest duration. 47 # Watch streaks beyond the longest duration here will be treated the same as watch 48 # streaks of the longest duration. 49 : [CommunityPointsWatchStreakEarningSettings!]! 50 51 }