Class: Stripe::V2::Core::AccountService::CreateParams::Identity::Individual::IdNumber
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountService::CreateParams::Identity::Individual::IdNumber
- Defined in:
- lib/stripe/services/v2/core/account_service.rb
Instance Attribute Summary collapse
-
#type ⇒ Object
The ID number type of an individual.
-
#value ⇒ Object
The value of the ID number.
Instance Method Summary collapse
-
#initialize(type: nil, value: nil) ⇒ IdNumber
constructor
A new instance of IdNumber.
Methods inherited from RequestParams
Constructor Details
#initialize(type: nil, value: nil) ⇒ IdNumber
Returns a new instance of IdNumber.
1928 1929 1930 1931 |
# File 'lib/stripe/services/v2/core/account_service.rb', line 1928 def initialize(type: nil, value: nil) @type = type @value = value end |
Instance Attribute Details
#type ⇒ Object
The ID number type of an individual.
1924 1925 1926 |
# File 'lib/stripe/services/v2/core/account_service.rb', line 1924 def type @type end |
#value ⇒ Object
The value of the ID number.
1926 1927 1928 |
# File 'lib/stripe/services/v2/core/account_service.rb', line 1926 def value @value end |