QRPaymentInputData

public struct QRPaymentInputData : Sendable

The input data structure for initializing QR code payments.

  • The maximum amount authorized for the transaction.

    Declaration

    Swift

    public let amount: String
  • The currency code to be used for this transaction.

    Declaration

    Swift

    public let currencyCode: String
  • aid

    The card Application Identifier (AID) to use for the QR code payment.

    Declaration

    Swift

    public let aid: String
  • idd

    Custom data for the issuer.

    Declaration

    Swift

    public let idd: String?
  • Undocumented

    Declaration

    Swift

    public init(amount: String, currencyCode: String, aid: String, idd: String? = nil)