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

com.binance.api.client.domain.account.WithdrawHistory Maven / Gradle / Ivy

The newest version!
package com.binance.api.client.domain.account;

import com.binance.api.client.constant.BinanceApiConstants;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import org.apache.commons.lang3.builder.ToStringBuilder;

import java.util.List;

/**
 * History of account withdrawals.
 *
 * @see Withdraw
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class WithdrawHistory {

  private List withdrawList;

  private boolean success;

  public List getWithdrawList() {
    return withdrawList;
  }

  public void setWithdrawList(List withdrawList) {
    this.withdrawList = withdrawList;
  }

  public boolean isSuccess() {
    return success;
  }

  public void setSuccess(boolean success) {
    this.success = success;
  }

  @Override
  public String toString() {
    return new ToStringBuilder(this, BinanceApiConstants.TO_STRING_BUILDER_STYLE)
        .append("withdrawList", withdrawList)
        .append("success", success)
        .toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy