Class: Stripe::AccountPersonService::UpdateParams::Documents
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountPersonService::UpdateParams::Documents
- Defined in:
- lib/stripe/services/account_person_service.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.
192 193 194 195 196 |
# File 'lib/stripe/services/account_person_service.rb', line 192 def initialize(company_authorization: nil, passport: nil, visa: nil) @company_authorization = @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.
186 187 188 |
# File 'lib/stripe/services/account_person_service.rb', line 186 def @company_authorization end |
#passport ⇒ Object
One or more documents showing the person’s passport page with photo and personal data.
188 189 190 |
# File 'lib/stripe/services/account_person_service.rb', line 188 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.
190 191 192 |
# File 'lib/stripe/services/account_person_service.rb', line 190 def visa @visa end |