public Map<String, Object> adaptTradeVolume(String data) {
Map<String, Object> resultMap = new HashMap<String, Object>();
CoinfloorTradeVolume rawRetObj;
try {
rawRetObj = streamObjectMapper.readValue(data, CoinfloorTradeVolume.class);
} catch (IOException e) {
throw new ExchangeException("JSON parse error", e);
}
resultMap.put("generic", rawRetObj.getAssetVol());
resultMap.put("raw", rawRetObj);
return resultMap;
}