Last active
August 29, 2015 14:17
-
-
Save pootsbook/0e0b8c14f381902f9ce5 to your computer and use it in GitHub Desktop.
A Hash of the Stripe::Account attributes for Connect managed accounts (26 Mar 15)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stripe_account = { | |
country: 'US', | |
display_name: 'string', | |
email: 'string', | |
business_name: 'string', | |
business_url: 'string', | |
managed: true, | |
bank_account: 'stripe.js token', | |
legal_entity: { | |
address: { | |
line1: 'string', | |
line2: 'string', | |
city: 'string', | |
state: 'string', | |
postal_code: 'string', | |
country: 'US' | |
}, | |
dob: { | |
day: 1, | |
month: 2, | |
year: 1966 | |
}, | |
personal_address: { | |
line1: 'string', | |
line2: 'string', | |
city: 'string', | |
state: 'string', | |
postal_code: 'string', | |
country: 'US' | |
}, | |
business_name: 'string', | |
first_name: 'string', | |
last_name: 'string', | |
type: 'individual | company' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment