OBJECT

PayoutPlan

Describes the payout plan a user has when enrolled into a payout program.

link GraphQL Schema definition

1type PayoutPlan {
2
3# The category applied for this payout plan.
4category: PayoutCategory!
5
6# Describes whether or not this payout plan is receiving revenue.
7isReceivingRevenue: Boolean!
8
9# Lists tags to further describe this type of payout plan.
10tags: [PayoutPlanTag!]
11
12}