Class: Increase::Models::CardPurchaseSupplement
- Defined in:
- lib/increase/models/card_purchase_supplement.rb
Defined Under Namespace
Instance Attribute Summary collapse
-
#card_payment_id ⇒ String
The ID of the Card Payment this transaction belongs to.
-
#id ⇒ String
The Card Purchase Supplement identifier.
-
#invoice ⇒ Increase::Models::CardPurchaseSupplement::Invoice
Invoice-level information about the payment.
-
#line_items ⇒ Array<Increase::Models::CardPurchaseSupplement::LineItem>
Line item information, such as individual products purchased.
-
#transaction_id ⇒ String
The ID of the transaction.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#card_payment_id ⇒ String
The ID of the Card Payment this transaction belongs to.
14 |
# File 'lib/increase/models/card_purchase_supplement.rb', line 14 required :card_payment_id, String |
#id ⇒ String
The Card Purchase Supplement identifier.
9 |
# File 'lib/increase/models/card_purchase_supplement.rb', line 9 required :id, String |
#invoice ⇒ Increase::Models::CardPurchaseSupplement::Invoice
Invoice-level information about the payment.
19 |
# File 'lib/increase/models/card_purchase_supplement.rb', line 19 required :invoice, -> { Increase::Models::CardPurchaseSupplement::Invoice } |
#line_items ⇒ Array<Increase::Models::CardPurchaseSupplement::LineItem>
Line item information, such as individual products purchased.
24 |
# File 'lib/increase/models/card_purchase_supplement.rb', line 24 required :line_items, Increase::ArrayOf.new(-> { Increase::Models::CardPurchaseSupplement::LineItem }) |
#transaction_id ⇒ String
The ID of the transaction.
29 |
# File 'lib/increase/models/card_purchase_supplement.rb', line 29 required :transaction_id, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be card_purchase_supplement
.
34 |
# File 'lib/increase/models/card_purchase_supplement.rb', line 34 required :type, Increase::Enum.new(:card_purchase_supplement) |