org.knowm.xchange.btcchina.dto.account.BTCChinaWithdrawalsObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-btcchina Show documentation
Show all versions of xchange-btcchina Show documentation
XChange implementation for BTC China
The newest version!
package org.knowm.xchange.btcchina.dto.account;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
public class BTCChinaWithdrawalsObject {
private final BTCChinaWithdrawal[] withdrawals;
public BTCChinaWithdrawalsObject(@JsonProperty("withdrawal") BTCChinaWithdrawal[] withdrawals) {
this.withdrawals = withdrawals;
}
public BTCChinaWithdrawal[] getWithdrawals() {
return withdrawals;
}
@Override
public String toString() {
return "BTCChinaWithdrawalsObject [withdrawals=" + Arrays.toString(withdrawals) + "]";
}
}