Class: Lithic::Models::AccountHolderUpdateParams::Individual
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::AccountHolderUpdateParams::Individual
- Defined in:
- lib/lithic/models/account_holder_update_params.rb
Instance Attribute Summary collapse
-
#address ⇒ Lithic::Models::AddressUpdate?
Individual’s current address - PO boxes, UPS drops, and FedEx drops are not acceptable; APO/FPO are acceptable.
-
#dob ⇒ String?
Individual’s date of birth, as an RFC 3339 date.
-
#email ⇒ String?
Individual’s email address.
-
#entity_token ⇒ String
Globally unique identifier for an entity.
-
#first_name ⇒ String?
Individual’s first name, as it appears on government-issued identity documents.
-
#last_name ⇒ String?
Individual’s last name, as it appears on government-issued identity documents.
-
#phone_number ⇒ String?
Individual’s phone number, entered in E.164 format.
Instance Method Summary collapse
-
#initialize(entity_token:, address: nil, dob: nil, email: nil, first_name: nil, government_id: nil, last_name: nil, phone_number: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see Individual for more details.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(entity_token:, address: nil, dob: nil, email: nil, first_name: nil, government_id: nil, last_name: nil, phone_number: nil) ⇒ Object
Some parameter documentations has been truncated, see Lithic::Models::AccountHolderUpdateParams::Individual for more details.
Information on the individual for whom the account is being opened and KYC is being run.
|
|
# File 'lib/lithic/models/account_holder_update_params.rb', line 521
|
Instance Attribute Details
#address ⇒ Lithic::Models::AddressUpdate?
Individual’s current address - PO boxes, UPS drops, and FedEx drops are not acceptable; APO/FPO are acceptable. Only USA addresses are currently supported.
477 |
# File 'lib/lithic/models/account_holder_update_params.rb', line 477 optional :address, -> { Lithic::AddressUpdate } |
#dob ⇒ String?
Individual’s date of birth, as an RFC 3339 date.
483 |
# File 'lib/lithic/models/account_holder_update_params.rb', line 483 optional :dob, String |
#email ⇒ String?
Individual’s email address. If utilizing Lithic for chargeback processing, this customer email address may be used to communicate dispute status and resolution.
490 |
# File 'lib/lithic/models/account_holder_update_params.rb', line 490 optional :email, String |
#entity_token ⇒ String
Globally unique identifier for an entity.
470 |
# File 'lib/lithic/models/account_holder_update_params.rb', line 470 required :entity_token, String |
#first_name ⇒ String?
Individual’s first name, as it appears on government-issued identity documents.
496 |
# File 'lib/lithic/models/account_holder_update_params.rb', line 496 optional :first_name, String |
#last_name ⇒ String?
Individual’s last name, as it appears on government-issued identity documents.
502 |
# File 'lib/lithic/models/account_holder_update_params.rb', line 502 optional :last_name, String |
#phone_number ⇒ String?
Individual’s phone number, entered in E.164 format.
508 |
# File 'lib/lithic/models/account_holder_update_params.rb', line 508 optional :phone_number, String |