Class: Increase::Models::CardPayment::State

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/increase/models/card_payment.rb

Instance Attribute Summary collapse

Method Summary

Methods inherited from BaseModel

#[], #inspect, #to_h, #to_s

Instance Attribute Details

#authorized_amountInteger

The total authorized amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.

Returns:

  • (Integer)


2137
# File 'lib/increase/models/card_payment.rb', line 2137

required :authorized_amount, Integer

#fuel_confirmed_amountInteger

The total amount from fuel confirmations in the minor unit of the transaction's currency. For dollars, for example, this is cents.

Returns:

  • (Integer)


2142
# File 'lib/increase/models/card_payment.rb', line 2142

required :fuel_confirmed_amount, Integer

#incremented_amountInteger

The total incrementally updated authorized amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.

Returns:

  • (Integer)


2147
# File 'lib/increase/models/card_payment.rb', line 2147

required :incremented_amount, Integer

#reversed_amountInteger

The total reversed amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.

Returns:

  • (Integer)


2152
# File 'lib/increase/models/card_payment.rb', line 2152

required :reversed_amount, Integer

#settled_amountInteger

The total settled or refunded amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.

Returns:

  • (Integer)


2157
# File 'lib/increase/models/card_payment.rb', line 2157

required :settled_amount, Integer