Class: Lithic::Models::AccountHolder::VerificationApplication
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::AccountHolder::VerificationApplication
- Defined in:
- lib/lithic/models/account_holder.rb
Overview
Defined Under Namespace
Modules: Status, StatusReason
Instance Attribute Summary collapse
-
#created ⇒ Time?
Timestamp of when the application was created.
-
#status ⇒ Symbol, ...
KYC and KYB evaluation states.
-
#status_reasons ⇒ Array<Symbol, Lithic::Models::AccountHolder::VerificationApplication::StatusReason>?
Reason for the evaluation status.
-
#updated ⇒ Time?
Timestamp of when the application was last updated.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(created: nil, status: nil, status_reasons: nil, updated: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see VerificationApplication 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(created: nil, status: nil, status_reasons: nil, updated: nil) ⇒ Object
Some parameter documentations has been truncated, see Lithic::Models::AccountHolder::VerificationApplication for more details.
Information about the most recent identity verification attempt
|
|
# File 'lib/lithic/models/account_holder.rb', line 640
|
Instance Attribute Details
#created ⇒ Time?
Timestamp of when the application was created.
615 |
# File 'lib/lithic/models/account_holder.rb', line 615 optional :created, Time |
#status ⇒ Symbol, ...
KYC and KYB evaluation states.
Note:
-
‘PENDING_REVIEW` is only applicable for the `KYB_BASIC` workflow.
625 |
# File 'lib/lithic/models/account_holder.rb', line 625 optional :status, enum: -> { Lithic::AccountHolder::VerificationApplication::Status } |
#status_reasons ⇒ Array<Symbol, Lithic::Models::AccountHolder::VerificationApplication::StatusReason>?
Reason for the evaluation status.
631 632 |
# File 'lib/lithic/models/account_holder.rb', line 631 optional :status_reasons, -> { Lithic::Internal::Type::ArrayOf[enum: Lithic::AccountHolder::VerificationApplication::StatusReason] } |
#updated ⇒ Time?
Timestamp of when the application was last updated.
638 |
# File 'lib/lithic/models/account_holder.rb', line 638 optional :updated, Time |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/lithic/models/account_holder.rb', line 670
|