VOID, TICKET
Input Request Parameters
Field | Type | Description | Example |
type * | string | Transaction type [VOID, TICKET] | ticket |
rrn * | string | Its Unique identifier to track the transaction from TXN response | 1234567890 |
- Access
makeARequestBasedOnTransactionTypes()ondeepLinkVariable
deepLinkVariable.makeARequestBasedOnTransactionTypes(type: Type, Amount: rrn, delegate: self)
2. Below snippet helps to make a void transaction.
Plain text
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!")
}
}Was this section helpful?
On this page
- VOID, TICKET