Class: Stripe::V2::Core::AccountCreateParams::Identity::BusinessDetails::IdNumber
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountCreateParams::Identity::BusinessDetails::IdNumber
- Defined in:
- lib/stripe/params/v2/core/account_create_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.
2143 2144 2145 2146 2147 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2143 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).
2137 2138 2139 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2137 def registrar @registrar end |
#type ⇒ Object
Open Enum. The ID number type of a business entity.
2139 2140 2141 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2139 def type @type end |
#value ⇒ Object
The value of the ID number.
2141 2142 2143 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2141 def value @value end |