Class: Increase::Models::DigitalWalletToken
- Defined in:
- lib/increase/models/digital_wallet_token.rb
Instance Attribute Summary collapse
-
#card_id ⇒ String
The identifier for the Card this Digital Wallet Token belongs to.
-
#created_at ⇒ String
The ISO 8601 date and time at which the Card was created.
-
#id ⇒ String
The Digital Wallet Token identifier.
-
#status ⇒ Symbol
This indicates if payments can be made with the Digital Wallet Token.
-
#token_requestor ⇒ Symbol
The digital wallet app being used.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#card_id ⇒ String
The identifier for the Card this Digital Wallet Token belongs to.
14 |
# File 'lib/increase/models/digital_wallet_token.rb', line 14 required :card_id, String |
#created_at ⇒ String
The ISO 8601 date and time at which the Card was created.
19 |
# File 'lib/increase/models/digital_wallet_token.rb', line 19 required :created_at, String |
#id ⇒ String
The Digital Wallet Token identifier.
9 |
# File 'lib/increase/models/digital_wallet_token.rb', line 9 required :id, String |
#status ⇒ Symbol
This indicates if payments can be made with the Digital Wallet Token.
24 |
# File 'lib/increase/models/digital_wallet_token.rb', line 24 required :status, Increase::Enum.new(:active, :inactive, :suspended, :deactivated) |
#token_requestor ⇒ Symbol
The digital wallet app being used.
29 |
# File 'lib/increase/models/digital_wallet_token.rb', line 29 required :token_requestor, Increase::Enum.new(:apple_pay, :google_pay, :unknown) |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be digital_wallet_token
.
34 |
# File 'lib/increase/models/digital_wallet_token.rb', line 34 required :type, Increase::Enum.new(:digital_wallet_token) |