Class: Increase::Models::Entity::NaturalPerson::Identification

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/increase/models/entity.rb

Instance Attribute Summary collapse

Method Summary

Methods inherited from BaseModel

#[], #inspect, #to_h, #to_s

Instance Attribute Details

#method_Symbol

A method that can be used to verify the individual's identity.

Returns:

  • (Symbol)


438
439
440
441
442
443
444
445
# File 'lib/increase/models/entity.rb', line 438

required :method_,
Increase::Enum.new(
  :social_security_number,
  :individual_taxpayer_identification_number,
  :passport,
  :drivers_license,
  :other
)

#number_last4String

The last 4 digits of the identification number that can be used to verify the individual's identity.

Returns:

  • (String)


450
# File 'lib/increase/models/entity.rb', line 450

required :number_last4, String