Class: Stripe::V2::Core::Accounts::PersonUpdateParams::IdNumber
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::Accounts::PersonUpdateParams::IdNumber
- Defined in:
- lib/stripe/params/v2/core/accounts/person_update_params.rb
Instance Attribute Summary collapse
-
#type ⇒ Object
The ID number type of an individual.
-
#value ⇒ Object
The value of the ID number.
Instance Method Summary collapse
-
#initialize(type: nil, value: nil) ⇒ IdNumber
constructor
A new instance of IdNumber.
Methods inherited from RequestParams
Constructor Details
#initialize(type: nil, value: nil) ⇒ IdNumber
Returns a new instance of IdNumber.
253 254 255 256 |
# File 'lib/stripe/params/v2/core/accounts/person_update_params.rb', line 253 def initialize(type: nil, value: nil) @type = type @value = value end |
Instance Attribute Details
#type ⇒ Object
The ID number type of an individual.
249 250 251 |
# File 'lib/stripe/params/v2/core/accounts/person_update_params.rb', line 249 def type @type end |
#value ⇒ Object
The value of the ID number.
251 252 253 |
# File 'lib/stripe/params/v2/core/accounts/person_update_params.rb', line 251 def value @value end |