Class: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferConfirmation

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

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 transfer's currency. For dollars, for example, this is cents.

Returns:

  • (Integer)


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

required :amount, Integer

#creditor_nameString

The name the sender of the transfer specified as the recipient of the transfer.

Returns:

  • (String)


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

required :creditor_name, String

#currencySymbol

The ISO 4217 code of the transfer's currency. This will always be "USD" for a Real-Time Payments transfer.

Returns:

  • (Symbol)


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

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

#debtor_account_numberString

The account number of the account that sent the transfer.

Returns:

  • (String)


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

required :debtor_account_number, String

#debtor_nameString

The name provided by the sender of the transfer.

Returns:

  • (String)


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

required :debtor_name, String

#debtor_routing_numberString

The routing number of the account that sent the transfer.

Returns:

  • (String)


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

required :debtor_routing_number, String

#remittance_informationString

Additional information included with the transfer.

Returns:

  • (String)


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

required :remittance_information, String

#transaction_identificationString

The Real-Time Payments network identification of the transfer.

Returns:

  • (String)


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

required :transaction_identification, String