Class: Stripe::AccountPersonCreateParams::Documents
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountPersonCreateParams::Documents
- Defined in:
- lib/stripe/params/account_person_create_params.rb
Defined Under Namespace
Classes: CompanyAuthorization, Passport, Visa
Instance Attribute Summary collapse
-
#company_authorization ⇒ Object
One or more documents that demonstrate proof that this person is authorized to represent the company.
-
#passport ⇒ Object
One or more documents showing the person’s passport page with photo and personal data.
-
#visa ⇒ Object
One or more documents showing the person’s visa required for living in the country where they are residing.
Instance Method Summary collapse
-
#initialize(company_authorization: nil, passport: nil, visa: nil) ⇒ Documents
constructor
A new instance of Documents.
Methods inherited from RequestParams
Constructor Details
#initialize(company_authorization: nil, passport: nil, visa: nil) ⇒ Documents
Returns a new instance of Documents.
172 173 174 175 176 |
# File 'lib/stripe/params/account_person_create_params.rb', line 172 def initialize(company_authorization: nil, passport: nil, visa: nil) = @passport = passport @visa = visa end |
Instance Attribute Details
#company_authorization ⇒ Object
One or more documents that demonstrate proof that this person is authorized to represent the company.
166 167 168 |
# File 'lib/stripe/params/account_person_create_params.rb', line 166 def end |
#passport ⇒ Object
One or more documents showing the person’s passport page with photo and personal data.
168 169 170 |
# File 'lib/stripe/params/account_person_create_params.rb', line 168 def passport @passport end |
#visa ⇒ Object
One or more documents showing the person’s visa required for living in the country where they are residing.
170 171 172 |
# File 'lib/stripe/params/account_person_create_params.rb', line 170 def visa @visa end |