Class: FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Individual
- Inherits:
-
BaseModel
- Object
- FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Individual
- Defined in:
- lib/finch-api/models/account_update_event.rb
Defined Under Namespace
Classes: Emails, PhoneNumbers, Residence
Instance Attribute Summary collapse
- #dob ⇒ Boolean?
- #emails ⇒ FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Individual::Emails?
- #encrypted_ssn ⇒ Boolean?
- #ethnicity ⇒ Boolean?
- #first_name ⇒ Boolean?
- #gender ⇒ Boolean?
- #id ⇒ Boolean?
- #last_name ⇒ Boolean?
- #middle_name ⇒ Boolean?
- #phone_numbers ⇒ FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Individual::PhoneNumbers?
- #preferred_name ⇒ Boolean?
- #residence ⇒ FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Individual::Residence?
- #ssn ⇒ Boolean?
- #type ⇒ Boolean writeonly
Instance Method Summary collapse
-
#initialize(data: nil, type: nil) ⇒ Individual
constructor
A new instance of Individual.
Constructor Details
#initialize(data: nil, type: nil) ⇒ Individual
Returns a new instance of Individual.
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/finch-api/models/account_update_event.rb', line 15 def initialize( id: nil, dob: nil, emails: nil, encrypted_ssn: nil, ethnicity: nil, first_name: nil, gender: nil, last_name: nil, middle_name: nil, phone_numbers: nil, preferred_name: nil, residence: nil, ssn: nil, ** ) super end |
Instance Attribute Details
#dob ⇒ Boolean?
1052 |
# File 'lib/finch-api/models/account_update_event.rb', line 1052 optional :dob, FinchAPI::BooleanModel |
#emails ⇒ FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Individual::Emails?
1061 1062 |
# File 'lib/finch-api/models/account_update_event.rb', line 1061 optional :emails, -> { FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Individual::Emails } |
#encrypted_ssn ⇒ Boolean?
1071 |
# File 'lib/finch-api/models/account_update_event.rb', line 1071 optional :encrypted_ssn, FinchAPI::BooleanModel |
#ethnicity ⇒ Boolean?
1080 |
# File 'lib/finch-api/models/account_update_event.rb', line 1080 optional :ethnicity, FinchAPI::BooleanModel |
#first_name ⇒ Boolean?
1089 |
# File 'lib/finch-api/models/account_update_event.rb', line 1089 optional :first_name, FinchAPI::BooleanModel |
#gender ⇒ Boolean?
1098 |
# File 'lib/finch-api/models/account_update_event.rb', line 1098 optional :gender, FinchAPI::BooleanModel |
#id ⇒ Boolean?
1043 |
# File 'lib/finch-api/models/account_update_event.rb', line 1043 optional :id, FinchAPI::BooleanModel |
#last_name ⇒ Boolean?
1107 |
# File 'lib/finch-api/models/account_update_event.rb', line 1107 optional :last_name, FinchAPI::BooleanModel |
#middle_name ⇒ Boolean?
1116 |
# File 'lib/finch-api/models/account_update_event.rb', line 1116 optional :middle_name, FinchAPI::BooleanModel |
#phone_numbers ⇒ FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Individual::PhoneNumbers?
1125 1126 |
# File 'lib/finch-api/models/account_update_event.rb', line 1125 optional :phone_numbers, -> { FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Individual::PhoneNumbers } |
#preferred_name ⇒ Boolean?
1135 |
# File 'lib/finch-api/models/account_update_event.rb', line 1135 optional :preferred_name, FinchAPI::BooleanModel |
#residence ⇒ FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Individual::Residence?
1144 1145 |
# File 'lib/finch-api/models/account_update_event.rb', line 1144 optional :residence, -> { FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Individual::Residence } |
#ssn ⇒ Boolean?
1154 |
# File 'lib/finch-api/models/account_update_event.rb', line 1154 optional :ssn, FinchAPI::BooleanModel |
#type=(value) ⇒ Boolean (writeonly)
2 3 4 |
# File 'lib/finch-api/models/account_update_event.rb', line 2 def type=(value) @type = value end |