Class: Increase::Models::RealTimeDecision::DigitalWalletToken
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::RealTimeDecision::DigitalWalletToken
- Defined in:
- lib/increase/models/real_time_decision.rb
Instance Attribute Summary collapse
-
#card_id ⇒ String
The identifier of the Card that is being tokenized.
-
#card_profile_id ⇒ String
The identifier of the Card Profile that was set via the real time decision.
-
#decision ⇒ Symbol
Whether or not the provisioning request was approved.
-
#digital_wallet ⇒ Symbol
The digital wallet app being used.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#card_id ⇒ String
The identifier of the Card that is being tokenized.
373 |
# File 'lib/increase/models/real_time_decision.rb', line 373 required :card_id, String |
#card_profile_id ⇒ String
The identifier of the Card Profile that was set via the real time decision. This will be null until the real time decision is responded to or if the real time decision did not set a card profile.
378 |
# File 'lib/increase/models/real_time_decision.rb', line 378 required :card_profile_id, String |
#decision ⇒ Symbol
Whether or not the provisioning request was approved. This will be null until the real time decision is responded to.
383 |
# File 'lib/increase/models/real_time_decision.rb', line 383 required :decision, Increase::Enum.new(:approve, :decline) |
#digital_wallet ⇒ Symbol
The digital wallet app being used.
388 |
# File 'lib/increase/models/real_time_decision.rb', line 388 required :digital_wallet, Increase::Enum.new(:apple_pay, :google_pay, :unknown) |