Class: Lithic::Models::KYC
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::KYC
- Defined in:
- lib/lithic/models/kyc.rb
Defined Under Namespace
Modules: Workflow Classes: Individual
Instance Attribute Summary collapse
-
#external_id ⇒ String?
A user provided id that can be used to link an account holder with an external system.
-
#individual ⇒ Lithic::Models::KYC::Individual
Information on individual for whom the account is being opened and KYC is being run.
-
#kyc_passed_timestamp ⇒ String?
An RFC 3339 timestamp indicating when precomputed KYC was completed on the individual with a pass result.
-
#tos_timestamp ⇒ String
An RFC 3339 timestamp indicating when the account holder accepted the applicable legal agreements (e.g., cardholder terms) as agreed upon during API customer’s implementation with Lithic.
-
#workflow ⇒ Symbol, Lithic::Models::KYC::Workflow
Specifies the type of KYC workflow to run.
Instance Method Summary collapse
-
#initialize(address:, dob:, email:, first_name:, government_id:, last_name:, phone_number:) ⇒ Object
constructor
Some parameter documentations has been truncated, see Individual 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(address:, dob:, email:, first_name:, government_id:, last_name:, phone_number:) ⇒ Object
Some parameter documentations has been truncated, see Individual for more details.
Information on individual for whom the account is being opened and KYC is being run.
|
|
# File 'lib/lithic/models/kyc.rb', line 43
|
Instance Attribute Details
#external_id ⇒ String?
A user provided id that can be used to link an account holder with an external system
32 |
# File 'lib/lithic/models/kyc.rb', line 32 optional :external_id, String |
#individual ⇒ Lithic::Models::KYC::Individual
Information on individual for whom the account is being opened and KYC is being run.
11 |
# File 'lib/lithic/models/kyc.rb', line 11 required :individual, -> { Lithic::KYC::Individual } |
#kyc_passed_timestamp ⇒ String?
An RFC 3339 timestamp indicating when precomputed KYC was completed on the individual with a pass result.
This field is required only if workflow type is ‘KYC_BYO`.
41 |
# File 'lib/lithic/models/kyc.rb', line 41 optional :kyc_passed_timestamp, String |
#tos_timestamp ⇒ String
An RFC 3339 timestamp indicating when the account holder accepted the applicable legal agreements (e.g., cardholder terms) as agreed upon during API customer’s implementation with Lithic.
19 |
# File 'lib/lithic/models/kyc.rb', line 19 required :tos_timestamp, String |
#workflow ⇒ Symbol, Lithic::Models::KYC::Workflow
Specifies the type of KYC workflow to run.
25 |
# File 'lib/lithic/models/kyc.rb', line 25 required :workflow, enum: -> { Lithic::KYC::Workflow } |