com.imsweb.seerapi.client.disease.DiseaseSearchResults Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of seerapi-client-java Show documentation
Show all versions of seerapi-client-java Show documentation
API mapping for SEER*API in Java
/*
* Copyright (C) 2011 Information Management Services, Inc.
*/
package com.imsweb.seerapi.client.disease;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.imsweb.seerapi.client.publishable.PublishableSearchResults;
public class DiseaseSearchResults extends PublishableSearchResults {
@JsonProperty("results")
protected List _results;
public List getResults() {
return _results;
}
public void setResults(List results) {
_results = results;
}
}