com.binance.api.client.domain.account.RepayQueryResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance-api-client Show documentation
Show all versions of binance-api-client Show documentation
Java implementation for Binance API
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