Increase.CardPurchaseSupplements.CardPurchaseSupplement.Invoice (Increase v1.0.0)

Copy Markdown View Source

Invoice-level information about the payment.

Fields

  • discount_amount - Discount given to cardholder.
  • discount_currency - The ISO 4217 code for the discount.
  • discount_treatment_code - Indicates how the merchant applied the discount.
  • duty_tax_amount - Amount of duty taxes.
  • duty_tax_currency - The ISO 4217 code for the duty tax.
  • order_date - Date the order was taken.
  • shipping_amount - The shipping cost.
  • shipping_currency - The ISO 4217 code for the shipping cost.
  • shipping_destination_country_code - Country code of the shipping destination.
  • shipping_destination_postal_code - Postal code of the shipping destination.
  • shipping_source_postal_code - Postal code of the location being shipped from.
  • shipping_tax_amount - Taxes paid for freight and shipping.
  • shipping_tax_currency - The ISO 4217 code for the shipping tax.
  • shipping_tax_rate - Tax rate for freight and shipping.
  • tax_treatments - Indicates how the merchant applied taxes.
  • unique_value_added_tax_invoice_reference - Value added tax invoice reference number.

Summary

Types

t()

@type t() :: %Increase.CardPurchaseSupplements.CardPurchaseSupplement.Invoice{
  discount_amount: integer() | nil,
  discount_currency: String.t() | nil,
  discount_treatment_code: String.t() | nil,
  duty_tax_amount: integer() | nil,
  duty_tax_currency: String.t() | nil,
  order_date: Date.t() | nil,
  shipping_amount: integer() | nil,
  shipping_currency: String.t() | nil,
  shipping_destination_country_code: String.t() | nil,
  shipping_destination_postal_code: String.t() | nil,
  shipping_source_postal_code: String.t() | nil,
  shipping_tax_amount: integer() | nil,
  shipping_tax_currency: String.t() | nil,
  shipping_tax_rate: String.t() | nil,
  tax_treatments: String.t() | nil,
  unique_value_added_tax_invoice_reference: String.t() | nil
}