
com.xeiam.xchange.poloniex.dto.marketdata.PoloniexLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-poloniex Show documentation
Show all versions of xchange-poloniex Show documentation
XChange implementation for the Poloniex Exchange
The newest version!
package com.xeiam.xchange.poloniex.dto.marketdata;
import java.math.BigDecimal;
/**
* @author Zach Holmes
*/
public class PoloniexLevel {
private BigDecimal amount;
private BigDecimal limit;
public PoloniexLevel(BigDecimal amount, BigDecimal limit) {
super();
this.amount = amount;
this.limit = limit;
}
public BigDecimal getAmount() {
return amount;
}
public BigDecimal getLimit() {
return limit;
}
@Override
public String toString() {
return "PoloniexLevel [amount=" + amount + ", limit=" + limit + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy