private SplitAndIndexTest(ApiClient api) {
this.api = api;
}
public Map<String, Object> test(String splitBy, int index, String string) throws IOException, APIException {
SplitAndIndexTestResponse r = api.get(SplitAndIndexTestResponse.class)
.path("/tools/split_and_index_tester")
.queryParam("split_by", splitBy)
.queryParam("index", index)
.queryParam("string", string)
.execute();