OBJECT

CommunityPointsUpdateCustomRewardRedemptionStatusesProgress

The type representing Community Points Update Custom Reward Redemption Statuses Progress.

link GraphQL Schema definition

1type CommunityPointsUpdateCustomRewardRedemptionStatusesProgress {
2
3# The channel ID the redemptions are being updated for.
4channelID: ID!
5
6# Unique identifier for the progress.
7id: ID!
8
9# The method being used to update the custom reward redemption statuses.
10method: CommunityPointsUpdateCustomRewardRedemptionStatusesMethod!
11
12# The new status the redemptions are being set to.
13newStatus: CommunityPointsCustomRewardRedemptionStatus!
14
15# The number of redemptions that have been processed so far.
16processed: Int!
17
18# The reward ID the redemptions being updated are for.
19# Will only be set if method is BY_REWARD.
20rewardID: ID
21
22# The total number of redemptions being updated.
23total: Int!
24
25}