ENUM

TaxMismatchError

TaxMismatchError enumerates valid registration and tax interview field names for payout onboarding.

link GraphQL Schema definition

1enum TaxMismatchError {
2
3# Applied when the user submits a name that does not match the name on their
4# registration.
5# If provided, the company name will be compared intead of the user's full legal
6# name.
7NAME
8
9# Applied when the user submits a country that does not match the country on their
10# registration.
11COUNTRY
12
13# Applied when the user submits an email that does not match the email on their
14# registration.
15EMAIL
16
17# Applied when the user submits a street address that does not match the street
18# address on their registration.
19STREET_ADDRESS
20
21# Applied when the user submits a street address 2 that does not match the street
22# address 2 on their registration.
23STREET_ADDRESS_2
24
25# Applied when the user submits a city that does not match the city on their
26# registration.
27CITY
28
29# Applied when the user submits a state that does not match the state on their
30# registration.
31STATE
32
33# Applied when the user submits a postal that does not match the postal on their
34# registration.
35POSTAL
36}