OBJECT

ClaimCommunityPointsPayload

The response from claiming community points.

link GraphQL Schema definition

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