OBJECT
ClaimCommunityPointsPayload
The response from claiming community points.
link GraphQL Schema definition
1 type ClaimCommunityPointsPayload { 2 3 # The points claim that was claimed. 4 : CommunityPointsClaim 5 6 # The user's point balance in the channel, after the claim. 7 : Int 8 9 # An error that occurred while claiming. If there is an error, the claim did not 10 # go through. 11 : ClaimCommunityPointsError 12 13 }