Class: Stripe::V2::Core::AccountUpdateParams::Identity::BusinessDetails::IdNumber
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountUpdateParams::Identity::BusinessDetails::IdNumber
- Defined in:
- lib/stripe/params/v2/core/account_update_params.rb
Instance Attribute Summary collapse
-
#registrar ⇒ Object
The registrar of the ID number (Only valid for DE ID number types).
-
#type ⇒ Object
Open Enum.
-
#value ⇒ Object
The value of the ID number.
Instance Method Summary collapse
-
#initialize(registrar: nil, type: nil, value: nil) ⇒ IdNumber
constructor
A new instance of IdNumber.
Methods inherited from RequestParams
Constructor Details
#initialize(registrar: nil, type: nil, value: nil) ⇒ IdNumber
Returns a new instance of IdNumber.
2289 2290 2291 2292 2293 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2289 def initialize(registrar: nil, type: nil, value: nil) @registrar = registrar @type = type @value = value end |
Instance Attribute Details
#registrar ⇒ Object
The registrar of the ID number (Only valid for DE ID number types).
2283 2284 2285 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2283 def registrar @registrar end |
#type ⇒ Object
Open Enum. The ID number type of a business entity.
2285 2286 2287 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2285 def type @type end |
#value ⇒ Object
The value of the ID number.
2287 2288 2289 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2287 def value @value end |