Class: Increase::Models::RealTimeDecision::CardAuthenticationChallenge
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::RealTimeDecision::CardAuthenticationChallenge
- Defined in:
- lib/increase/models/real_time_decision.rb
Overview
Defined Under Namespace
Modules: Result
Instance Attribute Summary collapse
-
#account_id ⇒ String
The identifier of the Account the card belongs to.
-
#card_id ⇒ String
The identifier of the Card that is being tokenized.
-
#card_payment_id ⇒ String
The identifier of the Card Payment this authentication challenge attempt belongs to.
-
#one_time_code ⇒ String
The one-time code delivered to the cardholder.
-
#result ⇒ Symbol, ...
Whether or not the challenge was delivered to the cardholder.
Instance Method Summary collapse
-
#initialize(account_id: , card_id: , card_payment_id: , one_time_code: , result: ) ⇒ Object
constructor
Some parameter documentations has been truncated, see CardAuthenticationChallenge 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(account_id: , card_id: , card_payment_id: , one_time_code: , result: ) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::RealTimeDecision::CardAuthenticationChallenge for more details.
Fields related to a 3DS authentication attempt.
|
|
# File 'lib/increase/models/real_time_decision.rb', line 209
|
Instance Attribute Details
#account_id ⇒ String
The identifier of the Account the card belongs to.
178 |
# File 'lib/increase/models/real_time_decision.rb', line 178 required :account_id, String |
#card_id ⇒ String
The identifier of the Card that is being tokenized.
184 |
# File 'lib/increase/models/real_time_decision.rb', line 184 required :card_id, String |
#card_payment_id ⇒ String
The identifier of the Card Payment this authentication challenge attempt belongs to.
191 |
# File 'lib/increase/models/real_time_decision.rb', line 191 required :card_payment_id, String |
#one_time_code ⇒ String
The one-time code delivered to the cardholder.
197 |
# File 'lib/increase/models/real_time_decision.rb', line 197 required :one_time_code, String |
#result ⇒ Symbol, ...
Whether or not the challenge was delivered to the cardholder.
203 204 205 206 207 |
# File 'lib/increase/models/real_time_decision.rb', line 203 required :result, enum: -> { Increase::RealTimeDecision::CardAuthenticationChallenge::Result }, nil?: true |