Input Request Parameters
|
Transaction type [VOID, TICKET] |
Its Unique identifier to track the transaction from TXN response |
Access makeARequestBasedOnTransactionTypes() on deepLinkVariable
deepLinkVariable.makeARequestBasedOnTransactionTypes(type: Type, Amount: rrn, delegate: self)
2. Below snippet helps to make a void transaction.
func didReceiveResponse(success: URL?) {
if UIApplication.shared.canOpenURL(success!) {
UIApplication.shared.open(success!, options: [:]) { result in
print(result)
}
}
else {
txtResponse.text = ""
showAlert(alertMessage: "App Not Installed in the Device!")
}
}