Class: Increase::Models::Entity::Joint::Individual::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)


369
370
371
372
373
374
375
376
# File 'lib/increase/models/entity.rb', line 369

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)


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

required :number_last4, String