private NaturalDateTest(ApiClient api) {
this.api = api;
}
public Map<String, String> test(String string) throws APIException, IOException {
NaturalDateTestResponse r = api.get(NaturalDateTestResponse.class)
.path("/tools/natural_date_tester")
.queryParam("string", string)
.execute();
Map<String, String> result = Maps.newHashMap();