Class: Increase::Models::CardPayment
- Defined in:
- lib/increase/models/card_payment.rb
Defined Under Namespace
Instance Attribute Summary collapse
-
#account_id ⇒ String
The identifier for the Account the Transaction belongs to.
-
#card_id ⇒ String
The Card identifier for this payment.
-
#created_at ⇒ String
The ISO 8601 time at which the Card Payment was created.
-
#digital_wallet_token_id ⇒ String
The Digital Wallet Token identifier for this payment.
-
#elements ⇒ Array<Increase::Models::CardPayment::Element>
The interactions related to this card payment.
-
#id ⇒ String
The Card Payment identifier.
-
#physical_card_id ⇒ String
The Physical Card identifier for this payment.
-
#state ⇒ Increase::Models::CardPayment::State
The summarized state of this card payment.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#account_id ⇒ String
The identifier for the Account the Transaction belongs to.
14 |
# File 'lib/increase/models/card_payment.rb', line 14 required :account_id, String |
#card_id ⇒ String
The Card identifier for this payment.
19 |
# File 'lib/increase/models/card_payment.rb', line 19 required :card_id, String |
#created_at ⇒ String
The ISO 8601 time at which the Card Payment was created.
24 |
# File 'lib/increase/models/card_payment.rb', line 24 required :created_at, String |
#digital_wallet_token_id ⇒ String
The Digital Wallet Token identifier for this payment.
29 |
# File 'lib/increase/models/card_payment.rb', line 29 required :digital_wallet_token_id, String |
#elements ⇒ Array<Increase::Models::CardPayment::Element>
The interactions related to this card payment.
34 |
# File 'lib/increase/models/card_payment.rb', line 34 required :elements, Increase::ArrayOf.new(-> { Increase::Models::CardPayment::Element }) |
#id ⇒ String
The Card Payment identifier.
9 |
# File 'lib/increase/models/card_payment.rb', line 9 required :id, String |
#physical_card_id ⇒ String
The Physical Card identifier for this payment.
39 |
# File 'lib/increase/models/card_payment.rb', line 39 required :physical_card_id, String |
#state ⇒ Increase::Models::CardPayment::State
The summarized state of this card payment.
44 |
# File 'lib/increase/models/card_payment.rb', line 44 required :state, -> { Increase::Models::CardPayment::State } |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be card_payment
.
49 |
# File 'lib/increase/models/card_payment.rb', line 49 required :type, Increase::Enum.new(:card_payment) |