com.imsweb.seerapi.client.disease.SiteCategory 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
package com.imsweb.seerapi.client.disease;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
public class SiteCategory {
@JsonProperty("id")
protected String _id;
@JsonProperty("label")
protected String _label;
@JsonProperty("sites")
protected List _sites;
public String getId() {
return _id;
}
public void setId(String id) {
_id = id;
}
public String getLabel() {
return _label;
}
public void setLabel(String label) {
_label = label;
}
public List getSites() {
return _sites;
}
public void setSites(List sites) {
_sites = sites;
}
}