-
Notifications
You must be signed in to change notification settings - Fork 10
Unlinking
guillaumedebavelaere edited this page Oct 16, 2017
·
1 revision
To unlink a broker:
linkedBrokerManager.unlinkBroker(
linkedBroker,
new TradeItCallback<TradeItResponse>() {
@Override
public void onSuccess(TradeItResponse response) {
//successfully unlink the broker
}
@Override
public void onError(TradeItErrorResult error) {
// an error occured
}
}
);