// Read in the JSON from the example resources
final InputStream is = JustcoinDepthTest.class.getResourceAsStream("/trade/example-post-create-response-data.json");
// Use Jackson to parse it
final ObjectMapper mapper = new ObjectMapper();
final PostCreateResponse response = mapper.readValue(is, PostCreateResponse.class);
assertThat(response.getId()).isEqualTo("1895549");
}