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.



3797
3798
3799
3800
# File 'lib/stripe/services/v2/core/account_service.rb', line 3797

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

Instance Attribute Details

#typeObject

The ID number type of an individual.



3793
3794
3795
# File 'lib/stripe/services/v2/core/account_service.rb', line 3793

def type
  @type
end

#valueObject

The value of the ID number.



3795
3796
3797
# File 'lib/stripe/services/v2/core/account_service.rb', line 3795

def value
  @value
end