BulkPaymentPaylinkOptions

public struct BulkPaymentPaylinkOptions : Codable
  • After the payment directly returns to the tenant’s url if set to true.

    Note

    Defaults to false.

    Declaration

    Swift

    public let autoRedirect: Bool?
  • Optional parameter for getting a QRCode image in Base64 format with the response.

    Note

    Defaults to false.

    Declaration

    Swift

    public let generateQrCode: Bool?
  • Disables QR Code component on Paylinks

    Declaration

    Swift

    public let disableQrCode: Bool?
  • Purpose of the bulk payment.

    Declaration

    Swift

    public let purpose: String?
  • Declaration

    Swift

    public init(autoRedirect: Bool?,
                generateQrCode: Bool?,
                disableQrCode: Bool?,
                purpose: String?)