Class: Increase::Models::PendingTransaction::Source::AccountTransferInstruction
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::PendingTransaction::Source::AccountTransferInstruction
- Defined in:
- lib/increase/models/pending_transaction.rb
Instance Attribute Summary collapse
-
#amount ⇒ Integer
The pending amount in the minor unit of the transaction's currency.
-
#currency ⇒ Symbol
The ISO 4217 code for the destination account currency.
-
#transfer_id ⇒ String
The identifier of the Account Transfer that led to this Pending Transaction.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#amount ⇒ Integer
The pending amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.
133 |
# File 'lib/increase/models/pending_transaction.rb', line 133 required :amount, Integer |
#currency ⇒ Symbol
The ISO 4217 code for the destination account currency.
138 |
# File 'lib/increase/models/pending_transaction.rb', line 138 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#transfer_id ⇒ String
The identifier of the Account Transfer that led to this Pending Transaction.
143 |
# File 'lib/increase/models/pending_transaction.rb', line 143 required :transfer_id, String |