// No meaningful generic form availiable - raw and generic output will be the same.
public Map<String, Object> adaptEstimateMarketOrder(String data) {
Map<String, Object> resultMap = new HashMap<String, Object>();
CoinfloorEstimateMarketOrder rawRetObj;
try {
rawRetObj = streamObjectMapper.readValue(data, CoinfloorEstimateMarketOrder.class);
} catch (IOException e) {
throw new ExchangeException("JSON parse error", e);
}