Class: Stripe::V2::Core::Accounts::PersonTokenCreateParams::Documents::SecondaryVerification

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/core/accounts/person_token_create_params.rb

Defined Under Namespace

Classes: FrontBack

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(front_back: nil, type: nil) ⇒ SecondaryVerification

Returns a new instance of SecondaryVerification.



198
199
200
201
# File 'lib/stripe/params/v2/core/accounts/person_token_create_params.rb', line 198

def initialize(front_back: nil, type: nil)
  @front_back = front_back
  @type = type
end

Instance Attribute Details

#front_backObject

The [file upload](docs.stripe.com/api/persons/update#create_file) tokens referring to each side of the document.



194
195
196
# File 'lib/stripe/params/v2/core/accounts/person_token_create_params.rb', line 194

def front_back
  @front_back
end

#typeObject

The format of the verification document. Currently supports ‘front_back` only.



196
197
198
# File 'lib/stripe/params/v2/core/accounts/person_token_create_params.rb', line 196

def type
  @type
end