Class: Increase::Models::Transaction::Source::AccountTransferIntention
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::Transaction::Source::AccountTransferIntention
- Defined in:
- lib/increase/models/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.
-
#description ⇒ String
The description you chose to give the transfer.
-
#destination_account_id ⇒ String
The identifier of the Account to where the Account Transfer was sent.
-
#source_account_id ⇒ String
The identifier of the Account from where the Account Transfer was sent.
-
#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.
226 |
# File 'lib/increase/models/transaction.rb', line 226 required :amount, Integer |
#currency ⇒ Symbol
The ISO 4217 code for the destination account currency.
231 |
# File 'lib/increase/models/transaction.rb', line 231 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#description ⇒ String
The description you chose to give the transfer.
236 |
# File 'lib/increase/models/transaction.rb', line 236 required :description, String |
#destination_account_id ⇒ String
The identifier of the Account to where the Account Transfer was sent.
241 |
# File 'lib/increase/models/transaction.rb', line 241 required :destination_account_id, String |
#source_account_id ⇒ String
The identifier of the Account from where the Account Transfer was sent.
246 |
# File 'lib/increase/models/transaction.rb', line 246 required :source_account_id, String |
#transfer_id ⇒ String
The identifier of the Account Transfer that led to this Pending Transaction.
251 |
# File 'lib/increase/models/transaction.rb', line 251 required :transfer_id, String |