/**
* Adapts a BTCChinaAccountInfoResponse to AccountInfo Object
*/
public static AccountInfo adaptAccountInfo(BTCChinaResponse<BTCChinaAccountInfo> response) {
BTCChinaAccountInfo result = response.getResult();
return new AccountInfo(result.getProfile().getUsername(), result.getProfile().getTradeFee(), BTCChinaAdapters.adaptWallets(result.getBalances(), result.getFrozens()));
}