OBJECT

CurrentPrimePayout

CurrentPrimePayout is the detail breakdown of the payout that will be made in this specific payout cycle.

link GraphQL Schema definition

1type CurrentPrimePayout {
2
3# pastCyclePayoutAmount is the part of the payout that was earned in previous
4# payout cycle(s).
5pastCyclePayoutAmount: Int!
6
7# thisCyclePayoutAmount is the part of the payout that was earned in this payout
8# cycle itself.
9thisCyclePayoutAmount: Int!
10
11# totalPayoutAmount is the total amount for this payout.
12totalPayoutAmount: Int!
13
14}