OBJECT

PrimePayoutDetail

PrimePayoutDetail shows the detailed breakdown of the prime payouts for a given user.

link GraphQL Schema definition

1type PrimePayoutDetail {
2
3# currency for the payout number above.
4currency: Currency!
5
6# currentPrimePayout is the payout that will be made in this specific payout
7# cycle.
8currentPrimePayout: CurrentPrimePayout!
9
10# deferredPrimePayout is part of the earning that was earned this month but will
11# not be paid out this month.
12deferredPrimePayout: DeferredPrimePayout!
13
14# month when this payout will be made.
15month: Int!
16
17# year when this payout will be made.
18year: Int!
19
20}