CoinfloorTicker rawRetObj;
try {
rawRetObj = streamObjectMapper.readValue(data, CoinfloorTicker.class);
} catch (IOException e) {
throw new ExchangeException("JSON parse error", e);
}
// String tradableIdentifier, BigDecimal last, BigDecimal bid, BigDecimal ask, BigDecimal high, BigDecimal low, BigDecimal volume, Date timestamp
// base & counter currencies hard coded in; no way to make it dynamic with return data - may change over time.
BigDecimal last = rawRetObj.getLast();