Class: Stripe::V2::Core::AccountService::UpdateParams::Identity::Individual::IdNumber

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/v2/core/account_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(type: nil, value: nil) ⇒ IdNumber

Returns a new instance of IdNumber.



4172
4173
4174
4175
# File 'lib/stripe/services/v2/core/account_service.rb', line 4172

def initialize(type: nil, value: nil)
  @type = type
  @value = value
end

Instance Attribute Details

#typeObject

The ID number type of an individual.



4168
4169
4170
# File 'lib/stripe/services/v2/core/account_service.rb', line 4168

def type
  @type
end

#valueObject

The value of the ID number.



4170
4171
4172
# File 'lib/stripe/services/v2/core/account_service.rb', line 4170

def value
  @value
end