VRPlinkOptionsResponse

public struct VRPlinkOptionsResponse : Codable
  • 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?
  • After the payment directly returns to the tenant’s url if set to true.

    Declaration

    Swift

    public let autoRedirect: Bool?
  • Client id of the API consumer

    Declaration

    Swift

    public let clientID: String?
  • Tenant id of the API consumer

    Declaration

    Swift

    public let tenantID: String?
  • If you are set true, no redirect after vrp.

    Declaration

    Swift

    public let dontRedirect: Bool?
  • Declaration

    Swift

    public init(generateQrCode: Bool?,
                disableQrCode: Bool?,
                autoRedirect: Bool?,
                clientID: String?,
                tenantID: String?,
                dontRedirect: Bool?)