Class: Stripe::Issuing::CardholderService::CreateParams::Individual::Verification::Document
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::CardholderService::CreateParams::Individual::Verification::Document
- Defined in:
- lib/stripe/services/issuing/cardholder_service.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) ⇒ 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.
162 163 164 165 |
# File 'lib/stripe/services/issuing/cardholder_service.rb', line 162 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`.
158 159 160 |
# File 'lib/stripe/services/issuing/cardholder_service.rb', line 158 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`.
160 161 162 |
# File 'lib/stripe/services/issuing/cardholder_service.rb', line 160 def front @front end |