Class: Increase::Models::Transaction::Source::FeePayment
- Defined in:
- lib/increase/models/transaction.rb
Instance Attribute Summary collapse
-
#amount ⇒ Integer
The amount in the minor unit of the transaction's currency.
-
#currency ⇒ Symbol
The ISO 4217 code for the transaction currency.
-
#fee_period_start ⇒ String
The start of this payment's fee period, usually the first day of a month.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#amount ⇒ Integer
The amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.
1657 |
# File 'lib/increase/models/transaction.rb', line 1657 required :amount, Integer |
#currency ⇒ Symbol
The ISO 4217 code for the transaction currency.
1662 |
# File 'lib/increase/models/transaction.rb', line 1662 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#fee_period_start ⇒ String
The start of this payment's fee period, usually the first day of a month.
1667 |
# File 'lib/increase/models/transaction.rb', line 1667 required :fee_period_start, String |