Class: Lithic::Models::TokenizationTwoFactorAuthenticationCodeSentWebhookEvent::ActivationMethod
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::TokenizationTwoFactorAuthenticationCodeSentWebhookEvent::ActivationMethod
- Defined in:
- lib/lithic/models/tokenization_two_factor_authentication_code_sent_webhook_event.rb
Overview
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
-
#type ⇒ Symbol, Lithic::Models::TokenizationTwoFactorAuthenticationCodeSentWebhookEvent::ActivationMethod::Type
The communication method that the user has selected to use to receive the authentication code.
-
#value ⇒ String
The location to which the authentication code was sent.
Instance Method Summary collapse
-
#initialize(type:, value:) ⇒ Object
constructor
Some parameter documentations has been truncated, see ActivationMethod 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(type:, value:) ⇒ Object
Some parameter documentations has been truncated, see Lithic::Models::TokenizationTwoFactorAuthenticationCodeSentWebhookEvent::ActivationMethod for more details.
|
|
# File 'lib/lithic/models/tokenization_two_factor_authentication_code_sent_webhook_event.rb', line 74
|
Instance Attribute Details
#type ⇒ Symbol, Lithic::Models::TokenizationTwoFactorAuthenticationCodeSentWebhookEvent::ActivationMethod::Type
The communication method that the user has selected to use to receive the authentication code. Supported Values: Sms = “TEXT_TO_CARDHOLDER_NUMBER”. Email
“EMAIL_TO_CARDHOLDER_ADDRESS”
63 64 |
# File 'lib/lithic/models/tokenization_two_factor_authentication_code_sent_webhook_event.rb', line 63 required :type, enum: -> { Lithic::TokenizationTwoFactorAuthenticationCodeSentWebhookEvent::ActivationMethod::Type } |
#value ⇒ String
The location to which the authentication code was sent. The format depends on the ActivationMethod.Type field. If Type is Email, the Value will be the email address. If the Type is Sms, the Value will be the phone number.
72 |
# File 'lib/lithic/models/tokenization_two_factor_authentication_code_sent_webhook_event.rb', line 72 required :value, String |