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, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

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

Returns a new instance of IdNumber.



5949
5950
5951
5952
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 5949

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

Instance Attribute Details

#typeObject

The ID number type of an individual.



5945
5946
5947
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 5945

def type
  @type
end

#valueObject

The value of the ID number.



5947
5948
5949
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 5947

def value
  @value
end