Class: Stripe::V2::Core::AccountUpdateParams::Identity::Individual::IdNumber

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/core/account_update_params.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.



1977
1978
1979
1980
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1977

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

Instance Attribute Details

#typeObject

The ID number type of an individual.



1973
1974
1975
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1973

def type
  @type
end

#valueObject

The value of the ID number.



1975
1976
1977
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1975

def value
  @value
end