try {
jsonData = streamObjectMapper.readValue(data, new TypeReference<Map<String, Object>>() {
});
rawRetObj = streamObjectMapper.readValue(data, CoinfloorPlaceOrder.class);
} catch (IOException e) {
throw new ExchangeException("JSON parse error", e);
}
resultMap.put("generic", jsonData.get("id").toString());
resultMap.put("raw", rawRetObj);