Class: Increase::Models::Transaction::Source::CardRefund
- Defined in:
- lib/increase/models/transaction.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::Transaction::Source::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::Transaction::Source::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.
440 |
# File 'lib/increase/models/transaction.rb', line 440 required :amount, Integer |
#card_payment_id ⇒ String
The ID of the Card Payment this transaction belongs to.
445 |
# File 'lib/increase/models/transaction.rb', line 445 required :card_payment_id, String |
#currency ⇒ Symbol
The ISO 4217 code for the transaction's settlement currency.
450 |
# File 'lib/increase/models/transaction.rb', line 450 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#id ⇒ String
The Card Refund identifier.
435 |
# File 'lib/increase/models/transaction.rb', line 435 required :id, String |
#merchant_acceptor_id ⇒ String
The merchant identifier (commonly abbreviated as MID) of the merchant the card is transacting with.
455 |
# File 'lib/increase/models/transaction.rb', line 455 required :merchant_acceptor_id, String |
#merchant_category_code ⇒ String
The 4-digit MCC describing the merchant's business.
460 |
# File 'lib/increase/models/transaction.rb', line 460 required :merchant_category_code, String |
#merchant_city ⇒ String
The city the merchant resides in.
465 |
# File 'lib/increase/models/transaction.rb', line 465 required :merchant_city, String |
#merchant_country ⇒ String
The country the merchant resides in.
470 |
# File 'lib/increase/models/transaction.rb', line 470 required :merchant_country, String |
#merchant_name ⇒ String
The name of the merchant.
475 |
# File 'lib/increase/models/transaction.rb', line 475 required :merchant_name, String |
#merchant_state ⇒ String
The state the merchant resides in.
480 |
# File 'lib/increase/models/transaction.rb', line 480 required :merchant_state, String |
#network_identifiers ⇒ Increase::Models::Transaction::Source::CardRefund::NetworkIdentifiers
Network-specific identifiers for this refund.
485 486 |
# File 'lib/increase/models/transaction.rb', line 485 required :network_identifiers, -> { Increase::Models::Transaction::Source::CardRefund::NetworkIdentifiers } |
#presentment_amount ⇒ Integer
The amount in the minor unit of the transaction's presentment currency.
491 |
# File 'lib/increase/models/transaction.rb', line 491 required :presentment_amount, Integer |
#presentment_currency ⇒ String
The ISO 4217 code for the transaction's presentment currency.
496 |
# File 'lib/increase/models/transaction.rb', line 496 required :presentment_currency, String |
#purchase_details ⇒ Increase::Models::Transaction::Source::CardRefund::PurchaseDetails
Additional details about the card purchase, such as tax and industry-specific fields.
501 |
# File 'lib/increase/models/transaction.rb', line 501 required :purchase_details, -> { Increase::Models::Transaction::Source::CardRefund::PurchaseDetails } |
#transaction_id ⇒ String
The identifier of the Transaction associated with this Transaction.
506 |
# File 'lib/increase/models/transaction.rb', line 506 required :transaction_id, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be card_refund
.
511 |
# File 'lib/increase/models/transaction.rb', line 511 required :type, Increase::Enum.new(:card_refund) |