for (BTCChinaDeposit deposit : depositsResponse.getResult().getDeposits()) {
System.out.println(deposit);
}
// Get withdrawals
BTCChinaGetWithdrawalsResponse withdrawalsResponse = btcChinaAccountService.getWithdrawals("BTC");
for (BTCChinaWithdrawal withdrawal : withdrawalsResponse.getResult().getWithdrawals()) {
System.out.println(withdrawal);
}
withdrawalsResponse = btcChinaAccountService.getWithdrawals("BTC", false);
for (BTCChinaWithdrawal withdrawal : withdrawalsResponse.getResult().getWithdrawals()) {
System.out.println(withdrawal);
}
// Get withdrawal
// BTCChinaGetWithdrawalResponse withdrawalResponse = btcChinaAccountService.getWithdrawal(56102);