Class: Stripe::AccountPersonUpdateParams::Verification::AdditionalDocument
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountPersonUpdateParams::Verification::AdditionalDocument
- Defined in:
- lib/stripe/params/account_person_update_params.rb
Instance Attribute Summary collapse
-
#back ⇒ Object
The back of an ID returned by a [file upload](stripe.com/docs/api#create_file) with a ‘purpose` value of `identity_document`.
-
#front ⇒ Object
The front of an ID returned by a [file upload](stripe.com/docs/api#create_file) with a ‘purpose` value of `identity_document`.
Instance Method Summary collapse
-
#initialize(back: nil, front: nil) ⇒ AdditionalDocument
constructor
A new instance of AdditionalDocument.
Methods inherited from RequestParams
Constructor Details
#initialize(back: nil, front: nil) ⇒ AdditionalDocument
Returns a new instance of AdditionalDocument.
287 288 289 290 |
# File 'lib/stripe/params/account_person_update_params.rb', line 287 def initialize(back: nil, front: nil) @back = back @front = front end |
Instance Attribute Details
#back ⇒ Object
The back of an ID returned by a [file upload](stripe.com/docs/api#create_file) with a ‘purpose` value of `identity_document`. 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.
283 284 285 |
# File 'lib/stripe/params/account_person_update_params.rb', line 283 def back @back end |
#front ⇒ Object
The front of an ID returned by a [file upload](stripe.com/docs/api#create_file) with a ‘purpose` value of `identity_document`. 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.
285 286 287 |
# File 'lib/stripe/params/account_person_update_params.rb', line 285 def front @front end |