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