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

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

There is a newer version: 1.0.6
Show newest version
package com.binance.api.client.domain.account;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

import java.util.List;

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

  private int total;
  private List rows;

  public int getTotal() {
    return total;
  }

  public void setTotal(int total) {
    this.total = total;
  }

  public List getRows() {
    return rows;
  }

  public void setRows(List rows) {
    this.rows = rows;
  }

  @Override
  public String toString() {
    return "RepayQueryResult{" +
            "total=" + total +
            ", rows=" + rows +
            '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy