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
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.
3008 3009 3010 3011 3012 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 3008 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).
3002 3003 3004 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 3002 def registrar @registrar end |
#type ⇒ Object
Open Enum. The ID number type of a business entity.
3004 3005 3006 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 3004 def type @type end |
#value ⇒ Object
The value of the ID number.
3006 3007 3008 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 3006 def value @value end |