OBJECT

PayoutBalance

Payout Balance is the amount accrued by the user since their last Payout.

link GraphQL Schema definition

1type PayoutBalance {
2
3# Currency for the user.
4currency: String!
5
6# Amount of total earnings accrued since last payout for user.
7currentPayoutBalanceAmount: Float!
8
9# Month for the current payout balance.
10month: Int!
11
12# Year for the current payout balance.
13year: Int!
14
15}