Class: Increase::Models::PendingTransaction::Source::WireTransferInstruction
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::PendingTransaction::Source::WireTransferInstruction
- Defined in:
- lib/increase/models/pending_transaction.rb
Instance Attribute Summary collapse
-
#account_number ⇒ String
The account number for the destination account.
-
#amount ⇒ Integer
The pending amount in the minor unit of the transaction's currency.
-
#message_to_recipient ⇒ String
The message that will show on the recipient's bank statement.
-
#routing_number ⇒ String
The American Bankers' Association (ABA) Routing Transit Number (RTN) for the destination account.
-
#transfer_id ⇒ String
The identifier of the Wire Transfer that led to this Pending Transaction.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#account_number ⇒ String
The account number for the destination account.
533 |
# File 'lib/increase/models/pending_transaction.rb', line 533 required :account_number, String |
#amount ⇒ Integer
The pending amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.
538 |
# File 'lib/increase/models/pending_transaction.rb', line 538 required :amount, Integer |
#message_to_recipient ⇒ String
The message that will show on the recipient's bank statement.
543 |
# File 'lib/increase/models/pending_transaction.rb', line 543 required :message_to_recipient, String |
#routing_number ⇒ String
The American Bankers' Association (ABA) Routing Transit Number (RTN) for the destination account.
548 |
# File 'lib/increase/models/pending_transaction.rb', line 548 required :routing_number, String |
#transfer_id ⇒ String
The identifier of the Wire Transfer that led to this Pending Transaction.
553 |
# File 'lib/increase/models/pending_transaction.rb', line 553 required :transfer_id, String |