INPUT_OBJECT

BitsChallengeConditionPoolRecipientWeightedShare

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

link GraphQL Schema definition

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