Class: Increase::Models::CardPayment::State
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::CardPayment::State
- Defined in:
- lib/increase/models/card_payment.rb
Overview
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.
-
#refund_authorized_amount ⇒ Integer
The total refund authorized amount in the minor unit of the transaction’s currency.
-
#refunded_amount ⇒ Integer
The total refunded 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 amount in the minor unit of the transaction’s currency.
Method Summary
Methods inherited from Internal::Type::BaseModel
#==, ==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, #initialize, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
This class inherits a constructor from Increase::Internal::Type::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.
9327 |
# File 'lib/increase/models/card_payment.rb', line 9327 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.
9334 |
# File 'lib/increase/models/card_payment.rb', line 9334 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.
9341 |
# File 'lib/increase/models/card_payment.rb', line 9341 required :incremented_amount, Integer |
#refund_authorized_amount ⇒ Integer
The total refund authorized amount in the minor unit of the transaction’s currency. For dollars, for example, this is cents.
9348 |
# File 'lib/increase/models/card_payment.rb', line 9348 required :refund_authorized_amount, Integer |
#refunded_amount ⇒ Integer
The total refunded amount in the minor unit of the transaction’s currency. For dollars, for example, this is cents.
9355 |
# File 'lib/increase/models/card_payment.rb', line 9355 required :refunded_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.
9362 |
# File 'lib/increase/models/card_payment.rb', line 9362 required :reversed_amount, Integer |
#settled_amount ⇒ Integer
The total settled amount in the minor unit of the transaction’s currency. For dollars, for example, this is cents.
9369 |
# File 'lib/increase/models/card_payment.rb', line 9369 required :settled_amount, Integer |