Class: Increase::Models::RealTimeDecision::DigitalWalletAuthentication
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::RealTimeDecision::DigitalWalletAuthentication
- Defined in:
- lib/increase/models/real_time_decision.rb
Overview
Defined Under Namespace
Modules: Channel, DigitalWallet, Result
Instance Attribute Summary collapse
-
#card_id ⇒ String
The identifier of the Card that is being tokenized.
-
#channel ⇒ Symbol, Increase::Models::RealTimeDecision::DigitalWalletAuthentication::Channel
The channel to send the card user their one-time passcode.
-
#digital_wallet ⇒ Symbol, Increase::Models::RealTimeDecision::DigitalWalletAuthentication::DigitalWallet
The digital wallet app being used.
-
#email ⇒ String?
The email to send the one-time passcode to if ‘channel` is equal to `email`.
-
#one_time_passcode ⇒ String
The one-time passcode to send the card user.
-
#phone ⇒ String?
The phone number to send the one-time passcode to if ‘channel` is equal to `sms`.
-
#result ⇒ Symbol, ...
Whether your application successfully delivered the one-time passcode.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(card_id: , channel: , digital_wallet: , email: , one_time_passcode: , phone: , result: ) ⇒ Object
constructor
Some parameter documentations has been truncated, see DigitalWalletAuthentication 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, 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(card_id: , channel: , digital_wallet: , email: , one_time_passcode: , phone: , result: ) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::RealTimeDecision::DigitalWalletAuthentication for more details.
Fields related to a digital wallet authentication attempt.
|
|
# File 'lib/increase/models/real_time_decision.rb', line 1089
|
Instance Attribute Details
#card_id ⇒ String
The identifier of the Card that is being tokenized.
1045 |
# File 'lib/increase/models/real_time_decision.rb', line 1045 required :card_id, String |
#channel ⇒ Symbol, Increase::Models::RealTimeDecision::DigitalWalletAuthentication::Channel
The channel to send the card user their one-time passcode.
1051 |
# File 'lib/increase/models/real_time_decision.rb', line 1051 required :channel, enum: -> { Increase::RealTimeDecision::DigitalWalletAuthentication::Channel } |
#digital_wallet ⇒ Symbol, Increase::Models::RealTimeDecision::DigitalWalletAuthentication::DigitalWallet
The digital wallet app being used.
1057 1058 |
# File 'lib/increase/models/real_time_decision.rb', line 1057 required :digital_wallet, enum: -> { Increase::RealTimeDecision::DigitalWalletAuthentication::DigitalWallet } |
#email ⇒ String?
The email to send the one-time passcode to if ‘channel` is equal to `email`.
1064 |
# File 'lib/increase/models/real_time_decision.rb', line 1064 required :email, String, nil?: true |
#one_time_passcode ⇒ String
The one-time passcode to send the card user.
1070 |
# File 'lib/increase/models/real_time_decision.rb', line 1070 required :one_time_passcode, String |
#phone ⇒ String?
The phone number to send the one-time passcode to if ‘channel` is equal to `sms`.
1077 |
# File 'lib/increase/models/real_time_decision.rb', line 1077 required :phone, String, nil?: true |
#result ⇒ Symbol, ...
Whether your application successfully delivered the one-time passcode.
1083 1084 1085 1086 1087 |
# File 'lib/increase/models/real_time_decision.rb', line 1083 required :result, enum: -> { Increase::RealTimeDecision::DigitalWalletAuthentication::Result }, nil?: true |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/increase/models/real_time_decision.rb', line 1122
|