BATCH
Input Request Parameters
Field | Type | Description | Example |
type * | string | Transaction type [BATCH/ SETTLEMENTS] | batch |
amount | string | Transaction Amount |
- Access
makeARequestBasedOnTransactionTypes()ondeepLinkVariable
deepLinkVariable.makeARequestBasedOnTransactionTypes(type: Type, Amount :"", delegate: self)
2. Below snippet helps to make a batch settlement.
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
- BATCH