Class: Increase::Models::Transaction::Source::CardSettlement

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/increase/models/transaction.rb

Defined Under Namespace

Classes: NetworkIdentifiers, PurchaseDetails

Instance Attribute Summary collapse

Method Summary

Methods inherited from BaseModel

#[], #inspect, #to_h, #to_s

Instance Attribute Details

#amountInteger

The amount in the minor unit of the transaction's settlement currency. For dollars, for example, this is cents.

Returns:

  • (Integer)


976
# File 'lib/increase/models/transaction.rb', line 976

required :amount, Integer

#card_authorizationString

The Card Authorization that was created prior to this Card Settlement, if one exists.

Returns:

  • (String)


981
# File 'lib/increase/models/transaction.rb', line 981

required :card_authorization, String

#card_payment_idString

The ID of the Card Payment this transaction belongs to.

Returns:

  • (String)


986
# File 'lib/increase/models/transaction.rb', line 986

required :card_payment_id, String

#currencySymbol

The ISO 4217 code for the transaction's settlement currency.

Returns:

  • (Symbol)


991
# File 'lib/increase/models/transaction.rb', line 991

required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD)

#idString

The Card Settlement identifier.

Returns:

  • (String)


971
# File 'lib/increase/models/transaction.rb', line 971

required :id, String

#merchant_acceptor_idString

The merchant identifier (commonly abbreviated as MID) of the merchant the card is transacting with.

Returns:

  • (String)


996
# File 'lib/increase/models/transaction.rb', line 996

required :merchant_acceptor_id, String

#merchant_category_codeString

The 4-digit MCC describing the merchant's business.

Returns:

  • (String)


1001
# File 'lib/increase/models/transaction.rb', line 1001

required :merchant_category_code, String

#merchant_cityString

The city the merchant resides in.

Returns:

  • (String)


1006
# File 'lib/increase/models/transaction.rb', line 1006

required :merchant_city, String

#merchant_countryString

The country the merchant resides in.

Returns:

  • (String)


1011
# File 'lib/increase/models/transaction.rb', line 1011

required :merchant_country, String

#merchant_nameString

The name of the merchant.

Returns:

  • (String)


1016
# File 'lib/increase/models/transaction.rb', line 1016

required :merchant_name, String

#merchant_stateString

The state the merchant resides in.

Returns:

  • (String)


1021
# File 'lib/increase/models/transaction.rb', line 1021

required :merchant_state, String

#network_identifiersIncrease::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_idString

The identifier of the Pending Transaction associated with this Transaction.

Returns:

  • (String)


1032
# File 'lib/increase/models/transaction.rb', line 1032

required :pending_transaction_id, String

#presentment_amountInteger

The amount in the minor unit of the transaction's presentment currency.

Returns:

  • (Integer)


1037
# File 'lib/increase/models/transaction.rb', line 1037

required :presentment_amount, Integer

#presentment_currencyString

The ISO 4217 code for the transaction's presentment currency.

Returns:

  • (String)


1042
# File 'lib/increase/models/transaction.rb', line 1042

required :presentment_currency, String

#purchase_detailsIncrease::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_idString

The identifier of the Transaction associated with this Transaction.

Returns:

  • (String)


1052
# File 'lib/increase/models/transaction.rb', line 1052

required :transaction_id, String

#typeSymbol

A constant representing the object's type. For this resource it will always be card_settlement.

Returns:

  • (Symbol)


1057
# File 'lib/increase/models/transaction.rb', line 1057

required :type, Increase::Enum.new(:card_settlement)