Class: Lithic::Models::AccountHolderCreatedWebhookEvent
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::AccountHolderCreatedWebhookEvent
- Defined in:
- lib/lithic/models/account_holder_created_webhook_event.rb
Defined Under Namespace
Modules: Status
Instance Attribute Summary collapse
-
#account_token ⇒ String?
The token of the account that was created.
-
#created ⇒ Time?
When the account_holder was created.
-
#event_type ⇒ Symbol, :"account_holder.created"
The type of event that occurred.
- #required_documents ⇒ Array<Lithic::Models::RequiredDocument>?
-
#status ⇒ Symbol, ...
The status of the account_holder that was created.
- #status_reason ⇒ Array<String>?
-
#token ⇒ String?
The token of the account_holder that was created.
Instance Method Summary collapse
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: nil, account_token: nil, created: nil, required_documents: nil, status: nil, status_reason: nil, event_type: :"account_holder.created") ⇒ Object
|
|
# File 'lib/lithic/models/account_holder_created_webhook_event.rb', line 46
|
Instance Attribute Details
#account_token ⇒ String?
The token of the account that was created.
22 |
# File 'lib/lithic/models/account_holder_created_webhook_event.rb', line 22 optional :account_token, String |
#created ⇒ Time?
When the account_holder was created
28 |
# File 'lib/lithic/models/account_holder_created_webhook_event.rb', line 28 optional :created, Time |
#event_type ⇒ Symbol, :"account_holder.created"
The type of event that occurred.
10 |
# File 'lib/lithic/models/account_holder_created_webhook_event.rb', line 10 required :event_type, const: :"account_holder.created" |
#required_documents ⇒ Array<Lithic::Models::RequiredDocument>?
33 |
# File 'lib/lithic/models/account_holder_created_webhook_event.rb', line 33 optional :required_documents, -> { Lithic::Internal::Type::ArrayOf[Lithic::RequiredDocument] } |
#status ⇒ Symbol, ...
The status of the account_holder that was created.
39 |
# File 'lib/lithic/models/account_holder_created_webhook_event.rb', line 39 optional :status, enum: -> { Lithic::AccountHolderCreatedWebhookEvent::Status } |
#status_reason ⇒ Array<String>?
44 |
# File 'lib/lithic/models/account_holder_created_webhook_event.rb', line 44 optional :status_reason, Lithic::Internal::Type::ArrayOf[String] |
#token ⇒ String?
The token of the account_holder that was created.
16 |
# File 'lib/lithic/models/account_holder_created_webhook_event.rb', line 16 optional :token, String |