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
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(registrar: nil, type: nil, value: nil) ⇒ IdNumber
Returns a new instance of IdNumber.
1731 1732 1733 1734 1735 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1731 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).
1725 1726 1727 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1725 def registrar @registrar end |
#type ⇒ Object
Open Enum. The ID number type of a business entity.
1727 1728 1729 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1727 def type @type end |
#value ⇒ Object
The value of the ID number.
1729 1730 1731 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1729 def value @value end |