Class: Lithic::Models::AccountHolderUpdatedWebhookEvent::LegacyPayload
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::AccountHolderUpdatedWebhookEvent::LegacyPayload
- Defined in:
- lib/lithic/models/account_holder_updated_webhook_event.rb
Defined Under Namespace
Modules: EventType
Instance Attribute Summary collapse
-
#business_account_token ⇒ String?
If applicable, represents the business account token associated with the account_holder.
-
#created ⇒ Time?
When the account_holder updated event was created.
-
#email ⇒ String?
If updated, the newly updated email associated with the account_holder otherwise the existing email is provided.
-
#event_type ⇒ Symbol, ...
The type of event that occurred.
-
#external_id ⇒ String?
If applicable, represents the external_id associated with the account_holder.
-
#first_name ⇒ String?
If applicable, represents the account_holder’s first name.
-
#last_name ⇒ String?
If applicable, represents the account_holder’s last name.
-
#legal_business_name ⇒ String?
If applicable, represents the account_holder’s business name.
-
#phone_number ⇒ String?
If updated, the newly updated phone_number associated with the account_holder otherwise the existing phone_number is provided.
-
#token ⇒ String
The token of the account_holder that was created.
Instance Method Summary collapse
-
#initialize(token:, business_account_token: nil, created: nil, email: nil, event_type: nil, external_id: nil, first_name: nil, last_name: nil, legal_business_name: nil, phone_number: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see LegacyPayload 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(token:, business_account_token: nil, created: nil, email: nil, event_type: nil, external_id: nil, first_name: nil, last_name: nil, legal_business_name: nil, phone_number: nil) ⇒ Object
Some parameter documentations has been truncated, see Lithic::Models::AccountHolderUpdatedWebhookEvent::LegacyPayload for more details.
Legacy payload for an updated account holder.
|
|
# File 'lib/lithic/models/account_holder_updated_webhook_event.rb', line 658
|
Instance Attribute Details
#business_account_token ⇒ String?
If applicable, represents the business account token associated with the account_holder.
606 |
# File 'lib/lithic/models/account_holder_updated_webhook_event.rb', line 606 optional :business_account_token, String, nil?: true |
#created ⇒ Time?
When the account_holder updated event was created
612 |
# File 'lib/lithic/models/account_holder_updated_webhook_event.rb', line 612 optional :created, Time |
#email ⇒ String?
If updated, the newly updated email associated with the account_holder otherwise the existing email is provided.
619 |
# File 'lib/lithic/models/account_holder_updated_webhook_event.rb', line 619 optional :email, String |
#event_type ⇒ Symbol, ...
The type of event that occurred.
625 |
# File 'lib/lithic/models/account_holder_updated_webhook_event.rb', line 625 optional :event_type, enum: -> { Lithic::AccountHolderUpdatedWebhookEvent::LegacyPayload::EventType } |
#external_id ⇒ String?
If applicable, represents the external_id associated with the account_holder.
631 |
# File 'lib/lithic/models/account_holder_updated_webhook_event.rb', line 631 optional :external_id, String, nil?: true |
#first_name ⇒ String?
If applicable, represents the account_holder’s first name.
637 |
# File 'lib/lithic/models/account_holder_updated_webhook_event.rb', line 637 optional :first_name, String |
#last_name ⇒ String?
If applicable, represents the account_holder’s last name.
643 |
# File 'lib/lithic/models/account_holder_updated_webhook_event.rb', line 643 optional :last_name, String |
#legal_business_name ⇒ String?
If applicable, represents the account_holder’s business name.
649 |
# File 'lib/lithic/models/account_holder_updated_webhook_event.rb', line 649 optional :legal_business_name, String |
#phone_number ⇒ String?
If updated, the newly updated phone_number associated with the account_holder otherwise the existing phone_number is provided.
656 |
# File 'lib/lithic/models/account_holder_updated_webhook_event.rb', line 656 optional :phone_number, String |
#token ⇒ String
The token of the account_holder that was created.
599 |
# File 'lib/lithic/models/account_holder_updated_webhook_event.rb', line 599 required :token, String |