Class: Increase::Models::CardPayment::State
- Defined in:
- lib/increase/models/card_payment.rb
Instance Attribute Summary collapse
-
#authorized_amount ⇒ Integer
The total authorized amount in the minor unit of the transaction's currency.
-
#fuel_confirmed_amount ⇒ Integer
The total amount from fuel confirmations in the minor unit of the transaction's currency.
-
#incremented_amount ⇒ Integer
The total incrementally updated authorized amount in the minor unit of the transaction's currency.
-
#reversed_amount ⇒ Integer
The total reversed amount in the minor unit of the transaction's currency.
-
#settled_amount ⇒ Integer
The total settled or refunded amount in the minor unit of the transaction's currency.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#authorized_amount ⇒ Integer
The total authorized amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.
2137 |
# File 'lib/increase/models/card_payment.rb', line 2137 required :authorized_amount, Integer |
#fuel_confirmed_amount ⇒ Integer
The total amount from fuel confirmations in the minor unit of the transaction's currency. For dollars, for example, this is cents.
2142 |
# File 'lib/increase/models/card_payment.rb', line 2142 required :fuel_confirmed_amount, Integer |
#incremented_amount ⇒ Integer
The total incrementally updated authorized amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.
2147 |
# File 'lib/increase/models/card_payment.rb', line 2147 required :incremented_amount, Integer |
#reversed_amount ⇒ Integer
The total reversed amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.
2152 |
# File 'lib/increase/models/card_payment.rb', line 2152 required :reversed_amount, Integer |
#settled_amount ⇒ Integer
The total settled or refunded amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.
2157 |
# File 'lib/increase/models/card_payment.rb', line 2157 required :settled_amount, Integer |