OBJECT

ChallengeUseBitsPoolRecipientWeightedShare

ChallengeUseBitsPoolRecipientWeightedShare represents the weighted share of the total bits pool that a recipient user is entitled to upon condition satisfaction.

link GraphQL Schema definition

1type ChallengeUseBitsPoolRecipientWeightedShare {
2
3# The bits recipient user.
4recipient: User
5
6# The weight of the recipient's share from the total bits pool. The sum of all the
7# recipients' weights
8# dictates the proportion that a particular recipient receives from the pool
9# (shareWeight/totalShareWeight * totalBitsAmountInPool).
10weight: Int!
11
12}