Class: Increase::Models::Transaction::Source::CardRevenuePayment
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::Transaction::Source::CardRevenuePayment
- 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.
-
#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.
-
#transacted_on_account_id ⇒ String
The account the card belonged to.
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.
944 |
# File 'lib/increase/models/transaction.rb', line 944 required :amount, Integer |
#currency ⇒ Symbol
The ISO 4217 code for the transaction currency.
949 |
# File 'lib/increase/models/transaction.rb', line 949 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.
954 |
# File 'lib/increase/models/transaction.rb', line 954 required :period_end, String |
#period_start ⇒ String
The start of the period for which this transaction paid interest.
959 |
# File 'lib/increase/models/transaction.rb', line 959 required :period_start, String |
#transacted_on_account_id ⇒ String
The account the card belonged to.
964 |
# File 'lib/increase/models/transaction.rb', line 964 required :transacted_on_account_id, String |