Delete device binding
Last updated
Was this helpful?
Was this helpful?
mastercardTAFHelper.removeBinding(tokenID, correlationID, new RemoveBindingListener() {
@Override
public void onError(TMGClientException tmgClientException) {
// Handle error
}
@Override
public void onSuccess() {
// Update local binding state if needed
}
});mastercardTAFHelper.removeBinding(forTokenID: tokenID,
correlationID: correlationID) { error in
if error == nil {
// Update local binding state if needed
} else {
// Handle error
}
}