
com.xeiam.xchange.cointrader.dto.account.CointraderBalance Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-cointrader Show documentation
Show all versions of xchange-cointrader Show documentation
XChange implementation for the Cointrader Exchange
The newest version!
package com.xeiam.xchange.cointrader.dto.account;
import java.math.BigDecimal;
import com.fasterxml.jackson.databind.PropertyNamingStrategy;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
/**
* @author Matija Mazi
*/
@JsonNaming(PropertyNamingStrategy.LowerCaseWithUnderscoresStrategy.class)
public class CointraderBalance {
private BigDecimal available;
private BigDecimal onHold;
private BigDecimal total;
public BigDecimal getAvailable() {
return available;
}
public BigDecimal getOnHold() {
return onHold;
}
public BigDecimal getTotal() {
return total;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy