Class: Lithic::Models::AccountHolderUpdateResponse::KYBKYCPatchResponse::VerificationApplication

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/lithic/models/account_holder_update_response.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:, status:, status_reasons:, updated:, ky_passed_at: nil) ⇒ Object

Some parameter documentations has been truncated, see Lithic::Models::AccountHolderUpdateResponse::KYBKYCPatchResponse::VerificationApplication for more details.

Information about the most recent identity verification attempt

Parameters:



# File 'lib/lithic/models/account_holder_update_response.rb', line 727


Instance Attribute Details

#createdTime

Timestamp of when the application was created.

Returns:

  • (Time)


691
# File 'lib/lithic/models/account_holder_update_response.rb', line 691

required :created, Time

#ky_passed_atTime?

Timestamp of when the application passed the verification process. Only present if ‘status` is `ACCEPTED`

Returns:

  • (Time, nil)


725
# File 'lib/lithic/models/account_holder_update_response.rb', line 725

optional :ky_passed_at, Time

#statusSymbol, Lithic::Models::AccountHolderUpdateResponse::KYBKYCPatchResponse::VerificationApplication::Status

KYC and KYB evaluation states.

Note: ‘PENDING_RESUBMIT` and `PENDING_DOCUMENT` are only applicable for the `ADVANCED` workflow.



700
701
# File 'lib/lithic/models/account_holder_update_response.rb', line 700

required :status,
enum: -> { Lithic::Models::AccountHolderUpdateResponse::KYBKYCPatchResponse::VerificationApplication::Status }

#status_reasonsArray<Symbol, Lithic::Models::AccountHolderUpdateResponse::KYBKYCPatchResponse::VerificationApplication::StatusReason>

Reason for the evaluation status.



707
708
709
710
711
712
# File 'lib/lithic/models/account_holder_update_response.rb', line 707

required :status_reasons,
-> do
  Lithic::Internal::Type::ArrayOf[
    enum: Lithic::Models::AccountHolderUpdateResponse::KYBKYCPatchResponse::VerificationApplication::StatusReason
  ]
end

#updatedTime

Timestamp of when the application was last updated.

Returns:

  • (Time)


718
# File 'lib/lithic/models/account_holder_update_response.rb', line 718

required :updated, Time

Class Method Details

.valuesArray<Symbol>

Returns:

  • (Array<Symbol>)


# File 'lib/lithic/models/account_holder_update_response.rb', line 758