Class: Increase::Models::Transaction::Source::InterestPayment
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::Transaction::Source::InterestPayment
- Defined in:
- lib/increase/models/transaction.rb
Instance Attribute Summary collapse
-
#accrued_on_account_id ⇒ String
The account on which the interest was accrued.
-
#amount ⇒ Integer
The amount in the minor unit of the transaction's currency.
-
#currency ⇒ Symbol
The ISO 4217 code for the transaction currency.
-
#period_end ⇒ String
The end of the period for which this transaction paid interest.
-
#period_start ⇒ String
The start of the period for which this transaction paid interest.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#accrued_on_account_id ⇒ String
The account on which the interest was accrued.
2076 |
# File 'lib/increase/models/transaction.rb', line 2076 required :accrued_on_account_id, String |
#amount ⇒ Integer
The amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.
2081 |
# File 'lib/increase/models/transaction.rb', line 2081 required :amount, Integer |
#currency ⇒ Symbol
The ISO 4217 code for the transaction currency.
2086 |
# File 'lib/increase/models/transaction.rb', line 2086 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#period_end ⇒ String
The end of the period for which this transaction paid interest.
2091 |
# File 'lib/increase/models/transaction.rb', line 2091 required :period_end, String |
#period_start ⇒ String
The start of the period for which this transaction paid interest.
2096 |
# File 'lib/increase/models/transaction.rb', line 2096 required :period_start, String |