cancelActivateProcess
Calls the cancelActivateProcess API to cancel the card activation process.
Method signature
copy
void cancelActivateProcess(@Nullable ACResultCallback<boolean> callback);Request parameters
Item | Type | Description | Required |
callback | ACResultCallback<Boolean> | The card activation cancellation result. | Optional |
Results
Item | Description |
true | Card activation is canceled successfully. |
false | Failed to cancel card activation. |
Response parameters
N/A
Sample
copy
manager = ACTapManager.getInstance(this.getApplication());
manager.cancelActivateProcess((result, errorCode, errorMsg) ->
log("cancel activation result:" + result + " errorCode:" + errorCode + " errorMsg:" + errorMsg));