Class GateioTicker
- java.lang.Object
-
- org.knowm.xchange.gateio.dto.GateioBaseResponse
-
- org.knowm.xchange.gateio.dto.marketdata.GateioTicker
-
public class GateioTicker extends GateioBaseResponse
-
-
Constructor Summary
Constructors Constructor Description GateioTicker(boolean result, String message, BigDecimal highestBid, BigDecimal low24hr, BigDecimal last, BigDecimal high24hr, BigDecimal percentChange, BigDecimal lowestAsk, BigDecimal quoteVolume, BigDecimal baseVolume)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigDecimal
getBaseVolume()
BigDecimal
getHigh24hr()
BigDecimal
getHighestBid()
BigDecimal
getLast()
BigDecimal
getLow24hr()
BigDecimal
getLowestAsk()
BigDecimal
getPercentChange()
BigDecimal
getQuoteVolume()
boolean
isResult()
String
toString()
-
Methods inherited from class org.knowm.xchange.gateio.dto.GateioBaseResponse
getMessage
-
-
-
-
Constructor Detail
-
GateioTicker
public GateioTicker(boolean result, String message, BigDecimal highestBid, BigDecimal low24hr, BigDecimal last, BigDecimal high24hr, BigDecimal percentChange, BigDecimal lowestAsk, BigDecimal quoteVolume, BigDecimal baseVolume)
-
-
Method Detail
-
getHighestBid
public BigDecimal getHighestBid()
-
isResult
public boolean isResult()
- Overrides:
isResult
in classGateioBaseResponse
-
getLow24hr
public BigDecimal getLow24hr()
-
getLast
public BigDecimal getLast()
-
getHigh24hr
public BigDecimal getHigh24hr()
-
getPercentChange
public BigDecimal getPercentChange()
-
getLowestAsk
public BigDecimal getLowestAsk()
-
getQuoteVolume
public BigDecimal getQuoteVolume()
-
getBaseVolume
public BigDecimal getBaseVolume()
-
toString
public String toString()
- Overrides:
toString
in classGateioBaseResponse
-
-