Class: Stripe::V2::Core::AccountCreateParams::Identity::Individual::IdNumber
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountCreateParams::Identity::Individual::IdNumber
- Defined in:
- lib/stripe/params/v2/core/account_create_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
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(type: nil, value: nil) ⇒ IdNumber
Returns a new instance of IdNumber.
2123 2124 2125 2126 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2123 def initialize(type: nil, value: nil) @type = type @value = value end |
Instance Attribute Details
#type ⇒ Object
The ID number type of an individual.
2119 2120 2121 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2119 def type @type end |
#value ⇒ Object
The value of the ID number.
2121 2122 2123 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2121 def value @value end |