Class: Lithic::Models::AccountHolder::VerificationApplication

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/lithic/models/account_holder.rb

Overview

Defined Under Namespace

Modules: Status, StatusReason

Instance Attribute Summary collapse

Class Method Summary collapse

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(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

Parameters:



# File 'lib/lithic/models/account_holder.rb', line 640


Instance Attribute Details

#createdTime?

Timestamp of when the application was created.

Returns:

  • (Time, nil)


615
# File 'lib/lithic/models/account_holder.rb', line 615

optional :created, Time

#statusSymbol, ...

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_reasonsArray<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] }

#updatedTime?

Timestamp of when the application was last updated.

Returns:

  • (Time, nil)


638
# File 'lib/lithic/models/account_holder.rb', line 638

optional :updated, Time

Class Method Details

.valuesArray<Symbol>

Returns:

  • (Array<Symbol>)


# File 'lib/lithic/models/account_holder.rb', line 670