Class: Lithic::Models::AccountHolder::Individual
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::AccountHolder::Individual
- Defined in:
- lib/lithic/models/account_holder.rb,
sig/lithic/models/account_holder.rbs
Overview
Instance Attribute Summary collapse
-
#address ⇒ Lithic::Models::Address
Individual's current address.
-
#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 the 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 ⇒ Object constructor
- #to_hash ⇒ {
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 ⇒ Object
350 |
# File 'sig/lithic/models/account_holder.rbs', line 350
def initialize: (
|
Instance Attribute Details
#address ⇒ Lithic::Models::Address
Individual's current address
426 |
# File 'lib/lithic/models/account_holder.rb', line 426 required :address, -> { Lithic::Address } |
#dob ⇒ String
Individual's date of birth, as an RFC 3339 date.
432 |
# File 'lib/lithic/models/account_holder.rb', line 432 required :dob, String |
#email ⇒ String
Individual's email address.
438 |
# File 'lib/lithic/models/account_holder.rb', line 438 required :email, String |
#entity_token ⇒ String
Globally unique identifier for the entity.
444 |
# File 'lib/lithic/models/account_holder.rb', line 444 required :entity_token, String |
#first_name ⇒ String
Individual's first name, as it appears on government-issued identity documents.
450 |
# File 'lib/lithic/models/account_holder.rb', line 450 required :first_name, String |
#last_name ⇒ String
Individual's last name, as it appears on government-issued identity documents.
456 |
# File 'lib/lithic/models/account_holder.rb', line 456 required :last_name, String |
#phone_number ⇒ String
Individual's phone number, entered in E.164 format.
462 |
# File 'lib/lithic/models/account_holder.rb', line 462 required :phone_number, String |
Instance Method Details
#to_hash ⇒ {
360 |
# File 'sig/lithic/models/account_holder.rbs', line 360
def to_hash: -> {
|