CurrencyConversion

@objcMembers
public class CurrencyConversion : NSObject, Codable

Holds data about any on-terminal currency conversion.

  • The amount of the payment converted into the currency in minor currency units.

    Declaration

    Swift

    public private(set) var convertedAmount: Int { get }
  • The 3-letter ISO 4217 currency code which the amount was converted to.

    Declaration

    Swift

    public private(set) var convertedCurrencyCode: String { get }
  • The conversion rate from the merchant’s currency to the cardholder’s local currency.

    Declaration

    Swift

    public private(set) var conversionRate: Double { get }