ENUM

PayoutOnboardingStep

PayoutOnboardingStep enumerates valid payout onboarding steps.

link GraphQL Schema definition

1enum PayoutOnboardingStep {
2
3# User needs to complete their registration step.
4REGISTRATION_NOT_STARTED
5
6# User needs to agree to their payout agreement.
7AGREEMENT_NOT_STARTED
8
9# User needs to submit their royalty tax interview.
10ROYALTY_TAX_INTERVIEW_NOT_STARTED
11
12# User submitted their royalty tax interview and is waiting for it to be accepted.
13ROYALTY_TAX_INTERVIEW_PENDING
14
15# User submitted their royalty tax interview but additional action by the user is
16# required before completion.
17ROYALTY_TAX_INTERVIEW_ACTION_REQUIRED
18
19# User submitted their royalty tax interview and received mismatch errors.
20ROYALTY_TAX_INTERVIEW_MISMATCH
21
22# User submitted their royalty tax interview and received errors while it was
23# processed.
24ROYALTY_TAX_INTERVIEW_FAILED
25
26# User has completed their royalty tax interview and needs to complete their
27# service tax interview.
28SERVICE_TAX_INTERVIEW_NOT_STARTED
29
30# User submitted their service tax interview and is waiting for it to be accepted.
31SERVICE_TAX_INTERVIEW_PENDING
32
33# User submitted their service tax interview but additional action by the user is
34# required before completion.
35SERVICE_TAX_INTERVIEW_ACTION_REQUIRED
36
37# User submitted their service tax interview and received mismatch errors.
38SERVICE_TAX_INTERVIEW_MISMATCH
39
40# User submitted their service tax interview and received errors while it was
41# processed.
42SERVICE_TAX_INTERVIEW_FAILED
43
44# User neeeds to setup how they want to get paid out.
45PAYOUT_METHOD_NOT_STARTED
46
47# User submitted their payout method and is waiting for it to be accepted.
48PAYOUT_METHOD_PENDING
49
50# User is waiting for a final approval from the payout onboarding reviewers.
51REVIEW_PENDING
52
53# User has completed their payout onboarding.
54COMPLETED
55
56# User has canceled their payout onboarding workflow.
57CANCELED
58
59# User has a pending upgrade to their payout agreement.
60AGREEMENT_PENDING_UPGRADE
61}