Class: Increase::Models::DigitalWalletTokenRequestCreateResponse
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::DigitalWalletTokenRequestCreateResponse
- Defined in:
- lib/increase/models/digital_wallet_token_request_create_response.rb
Instance Attribute Summary collapse
-
#decline_reason ⇒ Symbol
If the simulated tokenization attempt was declined, this field contains details as to why.
-
#digital_wallet_token_id ⇒ String
If the simulated tokenization attempt was accepted, this field contains the id of the Digital Wallet Token that was created.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#decline_reason ⇒ Symbol
If the simulated tokenization attempt was declined, this field contains details as to why.
9 10 |
# File 'lib/increase/models/digital_wallet_token_request_create_response.rb', line 9 required :decline_reason, Increase::Enum.new(:card_not_active, :no_verification_method, :webhook_timed_out, :webhook_declined) |
#digital_wallet_token_id ⇒ String
If the simulated tokenization attempt was accepted, this field contains the id of the Digital Wallet Token that was created.
15 |
# File 'lib/increase/models/digital_wallet_token_request_create_response.rb', line 15 required :digital_wallet_token_id, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be inbound_digital_wallet_token_request_simulation_result
.
20 |
# File 'lib/increase/models/digital_wallet_token_request_create_response.rb', line 20 required :type, Increase::Enum.new(:inbound_digital_wallet_token_request_simulation_result) |