Class: Increase::Models::PendingTransaction::Source::CheckTransferInstruction
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::PendingTransaction::Source::CheckTransferInstruction
- 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 check's currency.
-
#transfer_id ⇒ String
The identifier of the Check 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.
452 |
# File 'lib/increase/models/pending_transaction.rb', line 452 required :amount, Integer |
#currency ⇒ Symbol
The ISO 4217 code for the check's currency.
457 |
# File 'lib/increase/models/pending_transaction.rb', line 457 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#transfer_id ⇒ String
The identifier of the Check Transfer that led to this Pending Transaction.
462 |
# File 'lib/increase/models/pending_transaction.rb', line 462 required :transfer_id, String |