VRPlinkOptionsResponse
public struct VRPlinkOptionsResponse : Codable
Options which are for VRPlink.
-
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?
-
Creates an instance from the specified parameters.
Declaration
Swift
public init(generateQrCode: Bool?, disableQrCode: Bool?, autoRedirect: Bool?, clientID: String?, tenantID: String?, dontRedirect: Bool?)
Parameters
generateQrCode
Optional parameter for getting a QRCode image in Base64 format with the response.
disableQrCode
Disables QR Code component on Paylinks.
autoRedirect
After the payment directly returns to the tenant’s url if set to true.
clientID
Client id of the API consumer.
tenantID
Tenant id of the API consumer.
dontRedirect
If you are set true, no redirect after VRP.