Class: Stripe::V2::Core::AccountService::UpdateParams::Identity::BusinessDetails::IdNumber
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountService::UpdateParams::Identity::BusinessDetails::IdNumber
- Defined in:
- lib/stripe/services/v2/core/account_service.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.
3727 3728 3729 3730 3731 |
# File 'lib/stripe/services/v2/core/account_service.rb', line 3727 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).
3721 3722 3723 |
# File 'lib/stripe/services/v2/core/account_service.rb', line 3721 def registrar @registrar end |
#type ⇒ Object
Open Enum. The ID number type of a business entity.
3723 3724 3725 |
# File 'lib/stripe/services/v2/core/account_service.rb', line 3723 def type @type end |
#value ⇒ Object
The value of the ID number.
3725 3726 3727 |
# File 'lib/stripe/services/v2/core/account_service.rb', line 3725 def value @value end |