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

attr_accessor, new, #to_h

Constructor Details

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

Returns a new instance of IdNumber.



2832
2833
2834
2835
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2832

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

Instance Attribute Details

#typeObject

The ID number type of an individual.



2828
2829
2830
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2828

def type
  @type
end

#valueObject

The value of the ID number.



2830
2831
2832
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2830

def value
  @value
end