OBJECT

CommunityPointsCustomRewardRedemption

A community points custom reward that has been redeemed in a channel.

link GraphQL Schema definition

1type CommunityPointsCustomRewardRedemption {
2
3# The unique ID of this redemption.
4id: ID!
5
6# The user-provided text input, if it exists.
7input: String
8
9# The custom reward that was redeemed.
10reward: CommunityPointsCustomReward @deprecated( reason: "Use the 'rewardID' and 'rewardTitle' fields instead." )
11
12# The unique ID of the reward that was redeemed.
13rewardID: ID!
14
15# The title of the custom reward that was redeemed, at the time it was redeemed.
16rewardTitle: String!
17
18# The status of this redemption.
19status: CommunityPointsCustomRewardRedemptionStatus!
20
21# The time that the reward was redeemed at.
22timestamp: Time!
23
24# The user that redeemed the reward.
25user: User
26
27}