Increase.CardPayments.CardPayment.State (Increase v1.0.0)

Copy Markdown View Source

The summarized state of this card payment.

Fields

  • authorized_amount - The total authorized amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.
  • fuel_confirmed_amount - The total amount from fuel confirmations in the minor unit of the transaction's currency. For dollars, for example, this is cents.
  • incremented_amount - The total incrementally updated authorized amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.
  • refund_authorized_amount - The total refund authorized amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.
  • refunded_amount - The total refunded amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.
  • reversed_amount - The total reversed amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.
  • settled_amount - The total settled amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.

Summary

Types

t()

@type t() :: %Increase.CardPayments.CardPayment.State{
  authorized_amount: integer(),
  fuel_confirmed_amount: integer(),
  incremented_amount: integer(),
  refund_authorized_amount: integer(),
  refunded_amount: integer(),
  reversed_amount: integer(),
  settled_amount: integer()
}