OBJECT

CommunityPointsChannelEarningSettings

Information on how points are earned by viewers in a specific channel.

link GraphQL Schema definition

1type CommunityPointsChannelEarningSettings {
2
3# The average number of points per hour earned by a regular (non-sub) user on this
4# channel.
5averagePointsPerHour: Int!
6
7# The average number of points per hour earned by a subscriber on this channel.
8averagePointsPerHourSubscriber: 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.
11cheerPoints: Int!
12
13# How many minutes will pass in between bonus claims becoming available.
14claimPeriodMinutes: Int!
15
16# How many points are earned for clicking a bonus claim.
17claimPoints: Int!
18
19# How many points are earned for following the channel.
20followPoints: Int!
21
22# A unique identifier.
23id: ID!
24
25# The possible multipliers users can have on earning points.
26multipliers: [CommunityPointsMultiplier!]!
27
28# How many minutes must be watched to earn points for passively watching the
29# channel.
30passiveWatchPeriodMinutes: Int!
31
32# How many points are earned for passively watching the channel.
33passiveWatchPoints: Int!
34
35# How many points are earned for following a raid by the channel.
36raidPoints: Int!
37
38# The earning multiplier applied to subscribers to the channel.
39# This multiplier only applies to "watch" and "claim" actions.
40subscriberMultiplier: 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.
43subscriptionGiftPoints: 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.
49watchStreakPoints: [CommunityPointsWatchStreakEarningSettings!]!
50
51}