com.binance.api.client.domain.account.LoanQueryResult 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 LoanQueryResult {
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;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy