All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.knowm.xchange.btcchina.dto.account.BTCChinaWithdrawalsObject Maven / Gradle / Ivy

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) + "]";
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy