OBJECT

CommunityPointsProperties

Properties relating to a user's community points in a channel.

link GraphQL Schema definition

1type 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.
6activeMultipliers: [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.
10availableClaim: CommunityPointsClaim
11
12# The number of community points this user currently has available to use in this
13# channel.
14balance: Int!
15
16# Whether the user can redeem rewards on this channel for free.
17# The main example is broadcasters on their own channels.
18canRedeemRewardsForFree: Boolean!
19
20# The community goal contributions.
21goalContributions: [CommunityPointsCommunityGoalContribution!]
22
23# Timestamps of when the user last viewed the different types of community points
24# content on the channel.
25lastViewedContent: [CommunityPointsLastViewedContentByType!]
26
27# Availability of limited earning actions for the user in this channel.
28limitedEarnings: CommunityPointsLimitedEarnings
29
30# The custom reward user redemptions for the current live stream.
31userRedemptions: [CommunityPointsCustomRewardUserRedemption!]
32
33}