Class: Stripe::V2::Core::Accounts::PersonUpdateParams::Documents::SecondaryVerification::FrontBack
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::Accounts::PersonUpdateParams::Documents::SecondaryVerification::FrontBack
- Defined in:
- lib/stripe/params/v2/core/accounts/person_update_params.rb
Instance Attribute Summary collapse
-
#back ⇒ Object
A [file upload](docs.stripe.com/api/persons/update#create_file) token representing the back of the verification document.
-
#front ⇒ Object
A [file upload](docs.stripe.com/api/persons/update#create_file) token representing the front of the verification document.
Instance Method Summary collapse
-
#initialize(back: nil, front: nil) ⇒ FrontBack
constructor
A new instance of FrontBack.
Methods inherited from RequestParams
Constructor Details
#initialize(back: nil, front: nil) ⇒ FrontBack
Returns a new instance of FrontBack.
194 195 196 197 |
# File 'lib/stripe/params/v2/core/accounts/person_update_params.rb', line 194 def initialize(back: nil, front: nil) @back = back @front = front end |
Instance Attribute Details
#back ⇒ Object
A [file upload](docs.stripe.com/api/persons/update#create_file) token representing the back of the verification document. The purpose of the uploaded file should be ‘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.
190 191 192 |
# File 'lib/stripe/params/v2/core/accounts/person_update_params.rb', line 190 def back @back end |
#front ⇒ Object
A [file upload](docs.stripe.com/api/persons/update#create_file) token representing the front of the verification document. The purpose of the uploaded file should be ‘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.
192 193 194 |
# File 'lib/stripe/params/v2/core/accounts/person_update_params.rb', line 192 def front @front end |