Class: Stripe::AccountCreateParams::Documents::CompanyRegistrationVerification
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountCreateParams::Documents::CompanyRegistrationVerification
- Defined in:
- lib/stripe/params/account_create_params.rb
Instance Attribute Summary collapse
-
#files ⇒ Object
One or more document ids returned by a [file upload](api.stripe.com#create_file) with a ‘purpose` value of `account_requirement`.
Instance Method Summary collapse
-
#initialize(files: nil) ⇒ CompanyRegistrationVerification
constructor
A new instance of CompanyRegistrationVerification.
Methods inherited from RequestParams
Constructor Details
#initialize(files: nil) ⇒ CompanyRegistrationVerification
Returns a new instance of CompanyRegistrationVerification.
1398 1399 1400 |
# File 'lib/stripe/params/account_create_params.rb', line 1398 def initialize(files: nil) @files = files end |
Instance Attribute Details
#files ⇒ Object
One or more document ids returned by a [file upload](api.stripe.com#create_file) with a ‘purpose` value of `account_requirement`.
1396 1397 1398 |
# File 'lib/stripe/params/account_create_params.rb', line 1396 def files @files end |