Class: Increase::Models::CardPayment::Element::CardRefund
- Defined in:
- lib/increase/models/card_payment.rb
Defined Under Namespace
Classes: NetworkIdentifiers, PurchaseDetails
Instance Attribute Summary collapse
-
#amount ⇒ Integer
The amount in the minor unit of the transaction's settlement currency.
-
#card_payment_id ⇒ String
The ID of the Card Payment this transaction belongs to.
-
#currency ⇒ Symbol
The ISO 4217 code for the transaction's settlement currency.
-
#id ⇒ String
The Card Refund identifier.
-
#merchant_acceptor_id ⇒ String
The merchant identifier (commonly abbreviated as MID) of the merchant the card is transacting with.
-
#merchant_category_code ⇒ String
The 4-digit MCC describing the merchant's business.
-
#merchant_city ⇒ String
The city the merchant resides in.
-
#merchant_country ⇒ String
The country the merchant resides in.
-
#merchant_name ⇒ String
The name of the merchant.
-
#merchant_state ⇒ String
The state the merchant resides in.
-
#network_identifiers ⇒ Increase::Models::CardPayment::Element::CardRefund::NetworkIdentifiers
Network-specific identifiers for this refund.
-
#presentment_amount ⇒ Integer
The amount in the minor unit of the transaction's presentment currency.
-
#presentment_currency ⇒ String
The ISO 4217 code for the transaction's presentment currency.
-
#purchase_details ⇒ Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails
Additional details about the card purchase, such as tax and industry-specific fields.
-
#transaction_id ⇒ String
The identifier of the Transaction associated with this Transaction.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#amount ⇒ Integer
The amount in the minor unit of the transaction's settlement currency. For dollars, for example, this is cents.
829 |
# File 'lib/increase/models/card_payment.rb', line 829 required :amount, Integer |
#card_payment_id ⇒ String
The ID of the Card Payment this transaction belongs to.
834 |
# File 'lib/increase/models/card_payment.rb', line 834 required :card_payment_id, String |
#currency ⇒ Symbol
The ISO 4217 code for the transaction's settlement currency.
839 |
# File 'lib/increase/models/card_payment.rb', line 839 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#id ⇒ String
The Card Refund identifier.
824 |
# File 'lib/increase/models/card_payment.rb', line 824 required :id, String |
#merchant_acceptor_id ⇒ String
The merchant identifier (commonly abbreviated as MID) of the merchant the card is transacting with.
844 |
# File 'lib/increase/models/card_payment.rb', line 844 required :merchant_acceptor_id, String |
#merchant_category_code ⇒ String
The 4-digit MCC describing the merchant's business.
849 |
# File 'lib/increase/models/card_payment.rb', line 849 required :merchant_category_code, String |
#merchant_city ⇒ String
The city the merchant resides in.
854 |
# File 'lib/increase/models/card_payment.rb', line 854 required :merchant_city, String |
#merchant_country ⇒ String
The country the merchant resides in.
859 |
# File 'lib/increase/models/card_payment.rb', line 859 required :merchant_country, String |
#merchant_name ⇒ String
The name of the merchant.
864 |
# File 'lib/increase/models/card_payment.rb', line 864 required :merchant_name, String |
#merchant_state ⇒ String
The state the merchant resides in.
869 |
# File 'lib/increase/models/card_payment.rb', line 869 required :merchant_state, String |
#network_identifiers ⇒ Increase::Models::CardPayment::Element::CardRefund::NetworkIdentifiers
Network-specific identifiers for this refund.
874 875 |
# File 'lib/increase/models/card_payment.rb', line 874 required :network_identifiers, -> { Increase::Models::CardPayment::Element::CardRefund::NetworkIdentifiers } |
#presentment_amount ⇒ Integer
The amount in the minor unit of the transaction's presentment currency.
880 |
# File 'lib/increase/models/card_payment.rb', line 880 required :presentment_amount, Integer |
#presentment_currency ⇒ String
The ISO 4217 code for the transaction's presentment currency.
885 |
# File 'lib/increase/models/card_payment.rb', line 885 required :presentment_currency, String |
#purchase_details ⇒ Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails
Additional details about the card purchase, such as tax and industry-specific fields.
890 |
# File 'lib/increase/models/card_payment.rb', line 890 required :purchase_details, -> { Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails } |
#transaction_id ⇒ String
The identifier of the Transaction associated with this Transaction.
895 |
# File 'lib/increase/models/card_payment.rb', line 895 required :transaction_id, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be card_refund
.
900 |
# File 'lib/increase/models/card_payment.rb', line 900 required :type, Increase::Enum.new(:card_refund) |