Class: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferConfirmation
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferConfirmation
- Defined in:
- lib/increase/models/transaction.rb
Instance Attribute Summary collapse
-
#amount ⇒ Integer
The amount in the minor unit of the transfer's currency.
-
#creditor_name ⇒ String
The name the sender of the transfer specified as the recipient of the transfer.
-
#currency ⇒ Symbol
The ISO 4217 code of the transfer's currency.
-
#debtor_account_number ⇒ String
The account number of the account that sent the transfer.
-
#debtor_name ⇒ String
The name provided by the sender of the transfer.
-
#debtor_routing_number ⇒ String
The routing number of the account that sent the transfer.
-
#remittance_information ⇒ String
Additional information included with the transfer.
-
#transaction_identification ⇒ String
The Real-Time Payments network identification of the transfer.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#amount ⇒ Integer
The amount in the minor unit of the transfer's currency. For dollars, for example, this is cents.
1758 |
# File 'lib/increase/models/transaction.rb', line 1758 required :amount, Integer |
#creditor_name ⇒ String
The name the sender of the transfer specified as the recipient of the transfer.
1763 |
# File 'lib/increase/models/transaction.rb', line 1763 required :creditor_name, String |
#currency ⇒ Symbol
The ISO 4217 code of the transfer's currency. This will always be "USD" for a Real-Time Payments transfer.
1768 |
# File 'lib/increase/models/transaction.rb', line 1768 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#debtor_account_number ⇒ String
The account number of the account that sent the transfer.
1773 |
# File 'lib/increase/models/transaction.rb', line 1773 required :debtor_account_number, String |
#debtor_name ⇒ String
The name provided by the sender of the transfer.
1778 |
# File 'lib/increase/models/transaction.rb', line 1778 required :debtor_name, String |
#debtor_routing_number ⇒ String
The routing number of the account that sent the transfer.
1783 |
# File 'lib/increase/models/transaction.rb', line 1783 required :debtor_routing_number, String |
#remittance_information ⇒ String
Additional information included with the transfer.
1788 |
# File 'lib/increase/models/transaction.rb', line 1788 required :remittance_information, String |
#transaction_identification ⇒ String
The Real-Time Payments network identification of the transfer.
1793 |
# File 'lib/increase/models/transaction.rb', line 1793 required :transaction_identification, String |