Class: Increase::Models::RealTimeDecision::DigitalWalletToken
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::RealTimeDecision::DigitalWalletToken
- Defined in:
- lib/increase/models/real_time_decision.rb
Overview
Defined Under Namespace
Modules: Decision, DigitalWallet Classes: Device
Instance Attribute Summary collapse
-
#card_id ⇒ String
The identifier of the Card that is being tokenized.
-
#decision ⇒ Symbol, ...
Whether or not the provisioning request was approved.
-
#device ⇒ Increase::Models::RealTimeDecision::DigitalWalletToken::Device
Device that is being used to provision the digital wallet token.
-
#digital_wallet ⇒ Symbol, Increase::Models::RealTimeDecision::DigitalWalletToken::DigitalWallet
The digital wallet app being used.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(identifier: ) ⇒ Object
constructor
Device that is being used to provision the digital wallet token.
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(identifier: ) ⇒ Object
Device that is being used to provision the digital wallet token.
|
|
# File 'lib/increase/models/real_time_decision.rb', line 1688
|
Instance Attribute Details
#card_id ⇒ String
The identifier of the Card that is being tokenized.
1667 |
# File 'lib/increase/models/real_time_decision.rb', line 1667 required :card_id, String |
#decision ⇒ Symbol, ...
Whether or not the provisioning request was approved. This will be null until the real time decision is responded to.
1674 |
# File 'lib/increase/models/real_time_decision.rb', line 1674 required :decision, enum: -> { Increase::RealTimeDecision::DigitalWalletToken::Decision }, nil?: true |
#device ⇒ Increase::Models::RealTimeDecision::DigitalWalletToken::Device
Device that is being used to provision the digital wallet token.
1680 |
# File 'lib/increase/models/real_time_decision.rb', line 1680 required :device, -> { Increase::RealTimeDecision::DigitalWalletToken::Device } |
#digital_wallet ⇒ Symbol, Increase::Models::RealTimeDecision::DigitalWalletToken::DigitalWallet
The digital wallet app being used.
1686 |
# File 'lib/increase/models/real_time_decision.rb', line 1686 required :digital_wallet, enum: -> { Increase::RealTimeDecision::DigitalWalletToken::DigitalWallet } |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/increase/models/real_time_decision.rb', line 1715
|