Class: Increase::Models::CardPayment::Element::CardSettlement
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::CardPayment::Element::CardSettlement
- 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_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::CardPayment::Element::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::CardPayment::Element::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.
1404 |
# File 'lib/increase/models/card_payment.rb', line 1404 required :amount, Integer |
#card_authorization ⇒ String
The Card Authorization that was created prior to this Card Settlement, if one exists.
1409 |
# File 'lib/increase/models/card_payment.rb', line 1409 required :card_authorization, String |
#card_payment_id ⇒ String
The ID of the Card Payment this transaction belongs to.
1414 |
# File 'lib/increase/models/card_payment.rb', line 1414 required :card_payment_id, String |
#currency ⇒ Symbol
The ISO 4217 code for the transaction's settlement currency.
1419 |
# File 'lib/increase/models/card_payment.rb', line 1419 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#id ⇒ String
The Card Settlement identifier.
1399 |
# File 'lib/increase/models/card_payment.rb', line 1399 required :id, String |
#merchant_acceptor_id ⇒ String
The merchant identifier (commonly abbreviated as MID) of the merchant the card is transacting with.
1424 |
# File 'lib/increase/models/card_payment.rb', line 1424 required :merchant_acceptor_id, String |
#merchant_category_code ⇒ String
The 4-digit MCC describing the merchant's business.
1429 |
# File 'lib/increase/models/card_payment.rb', line 1429 required :merchant_category_code, String |
#merchant_city ⇒ String
The city the merchant resides in.
1434 |
# File 'lib/increase/models/card_payment.rb', line 1434 required :merchant_city, String |
#merchant_country ⇒ String
The country the merchant resides in.
1439 |
# File 'lib/increase/models/card_payment.rb', line 1439 required :merchant_country, String |
#merchant_name ⇒ String
The name of the merchant.
1444 |
# File 'lib/increase/models/card_payment.rb', line 1444 required :merchant_name, String |
#merchant_state ⇒ String
The state the merchant resides in.
1449 |
# File 'lib/increase/models/card_payment.rb', line 1449 required :merchant_state, String |
#network_identifiers ⇒ Increase::Models::CardPayment::Element::CardSettlement::NetworkIdentifiers
Network-specific identifiers for this refund.
1454 1455 |
# File 'lib/increase/models/card_payment.rb', line 1454 required :network_identifiers, -> { Increase::Models::CardPayment::Element::CardSettlement::NetworkIdentifiers } |
#pending_transaction_id ⇒ String
The identifier of the Pending Transaction associated with this Transaction.
1460 |
# File 'lib/increase/models/card_payment.rb', line 1460 required :pending_transaction_id, String |
#presentment_amount ⇒ Integer
The amount in the minor unit of the transaction's presentment currency.
1465 |
# File 'lib/increase/models/card_payment.rb', line 1465 required :presentment_amount, Integer |
#presentment_currency ⇒ String
The ISO 4217 code for the transaction's presentment currency.
1470 |
# File 'lib/increase/models/card_payment.rb', line 1470 required :presentment_currency, String |
#purchase_details ⇒ Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails
Additional details about the card purchase, such as tax and industry-specific fields.
1475 |
# File 'lib/increase/models/card_payment.rb', line 1475 required :purchase_details, -> { Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails } |
#transaction_id ⇒ String
The identifier of the Transaction associated with this Transaction.
1480 |
# File 'lib/increase/models/card_payment.rb', line 1480 required :transaction_id, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be card_settlement
.
1485 |
# File 'lib/increase/models/card_payment.rb', line 1485 required :type, Increase::Enum.new(:card_settlement) |