Class: Stripe::AccountCreateParams::Company::Verification::Document
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountCreateParams::Company::Verification::Document
- Defined in:
- lib/stripe/params/account_create_params.rb
Instance Attribute Summary collapse
-
#back ⇒ Object
The back of a document returned by a [file upload](api.stripe.com#create_file) with a ‘purpose` value of `additional_verification`.
-
#front ⇒ Object
The front of a document returned by a [file upload](api.stripe.com#create_file) with a ‘purpose` value of `additional_verification`.
Instance Method Summary collapse
-
#initialize(back: nil, front: nil) ⇒ Document
constructor
A new instance of Document.
Methods inherited from RequestParams
Constructor Details
#initialize(back: nil, front: nil) ⇒ Document
Returns a new instance of Document.
1203 1204 1205 1206 |
# File 'lib/stripe/params/account_create_params.rb', line 1203 def initialize(back: nil, front: nil) @back = back @front = front end |
Instance Attribute Details
#back ⇒ Object
The back of a document returned by a [file upload](api.stripe.com#create_file) with a ‘purpose` value of `additional_verification`. The uploaded file needs to be a color image (smaller than 8,000px by 8,000px), in JPG, PNG, or PDF format, and less than 10 MB in size.
1199 1200 1201 |
# File 'lib/stripe/params/account_create_params.rb', line 1199 def back @back end |
#front ⇒ Object
The front of a document returned by a [file upload](api.stripe.com#create_file) with a ‘purpose` value of `additional_verification`. The uploaded file needs to be a color image (smaller than 8,000px by 8,000px), in JPG, PNG, or PDF format, and less than 10 MB in size.
1201 1202 1203 |
# File 'lib/stripe/params/account_create_params.rb', line 1201 def front @front end |