OBJECT
CommunityPointsProperties
Properties relating to a user's community points in a channel.
link GraphQL Schema definition
1 type CommunityPointsProperties { 2 3 # Multipliers currently affecting the logged in user's rate of point gaining in 4 # this channel. 5 # If there are no multipliers active, will be an empty array. 6 : [CommunityPointsMultiplier!] 7 8 # Points that are available for the user to click to claim in this channel. Null 9 # if there are no points available to claim. 10 : CommunityPointsClaim 11 12 # The number of community points this user currently has available to use in this 13 # channel. 14 : Int! 15 16 # Whether the user can redeem rewards on this channel for free. 17 # The main example is broadcasters on their own channels. 18 : Boolean! 19 20 # The community goal contributions. 21 : [CommunityPointsCommunityGoalContribution!] 22 23 # Timestamps of when the user last viewed the different types of community points 24 # content on the channel. 25 : [CommunityPointsLastViewedContentByType!] 26 27 # Availability of limited earning actions for the user in this channel. 28 : CommunityPointsLimitedEarnings 29 30 # The custom reward user redemptions for the current live stream. 31 : [CommunityPointsCustomRewardUserRedemption!] 32 33 }