Class: Increase::Models::Transaction::Source::CardSettlement
- 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_authorization ⇒ String
The Card Authorization that was created prior to this Card Settlement, if one exists.
-
#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 Settlement 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::CardSettlement::NetworkIdentifiers
Network-specific identifiers for this refund.
-
#pending_transaction_id ⇒ String
The identifier of the Pending Transaction associated with this Transaction.
-
#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::CardSettlement::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.
976 |
# File 'lib/increase/models/transaction.rb', line 976 required :amount, Integer |
#card_authorization ⇒ String
The Card Authorization that was created prior to this Card Settlement, if one exists.
981 |
# File 'lib/increase/models/transaction.rb', line 981 required :card_authorization, String |
#card_payment_id ⇒ String
The ID of the Card Payment this transaction belongs to.
986 |
# File 'lib/increase/models/transaction.rb', line 986 required :card_payment_id, String |
#currency ⇒ Symbol
The ISO 4217 code for the transaction's settlement currency.
991 |
# File 'lib/increase/models/transaction.rb', line 991 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#id ⇒ String
The Card Settlement identifier.
971 |
# File 'lib/increase/models/transaction.rb', line 971 required :id, String |
#merchant_acceptor_id ⇒ String
The merchant identifier (commonly abbreviated as MID) of the merchant the card is transacting with.
996 |
# File 'lib/increase/models/transaction.rb', line 996 required :merchant_acceptor_id, String |
#merchant_category_code ⇒ String
The 4-digit MCC describing the merchant's business.
1001 |
# File 'lib/increase/models/transaction.rb', line 1001 required :merchant_category_code, String |
#merchant_city ⇒ String
The city the merchant resides in.
1006 |
# File 'lib/increase/models/transaction.rb', line 1006 required :merchant_city, String |
#merchant_country ⇒ String
The country the merchant resides in.
1011 |
# File 'lib/increase/models/transaction.rb', line 1011 required :merchant_country, String |
#merchant_name ⇒ String
The name of the merchant.
1016 |
# File 'lib/increase/models/transaction.rb', line 1016 required :merchant_name, String |
#merchant_state ⇒ String
The state the merchant resides in.
1021 |
# File 'lib/increase/models/transaction.rb', line 1021 required :merchant_state, String |
#network_identifiers ⇒ Increase::Models::Transaction::Source::CardSettlement::NetworkIdentifiers
Network-specific identifiers for this refund.
1026 1027 |
# File 'lib/increase/models/transaction.rb', line 1026 required :network_identifiers, -> { Increase::Models::Transaction::Source::CardSettlement::NetworkIdentifiers } |
#pending_transaction_id ⇒ String
The identifier of the Pending Transaction associated with this Transaction.
1032 |
# File 'lib/increase/models/transaction.rb', line 1032 required :pending_transaction_id, String |
#presentment_amount ⇒ Integer
The amount in the minor unit of the transaction's presentment currency.
1037 |
# File 'lib/increase/models/transaction.rb', line 1037 required :presentment_amount, Integer |
#presentment_currency ⇒ String
The ISO 4217 code for the transaction's presentment currency.
1042 |
# File 'lib/increase/models/transaction.rb', line 1042 required :presentment_currency, String |
#purchase_details ⇒ Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails
Additional details about the card purchase, such as tax and industry-specific fields.
1047 |
# File 'lib/increase/models/transaction.rb', line 1047 required :purchase_details, -> { Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails } |
#transaction_id ⇒ String
The identifier of the Transaction associated with this Transaction.
1052 |
# File 'lib/increase/models/transaction.rb', line 1052 required :transaction_id, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be card_settlement
.
1057 |
# File 'lib/increase/models/transaction.rb', line 1057 required :type, Increase::Enum.new(:card_settlement) |