com.imsweb.seerapi.client.disease.SiteRange 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) 2013 Information Management Services, Inc.
*/
package com.imsweb.seerapi.client.disease;
import com.fasterxml.jackson.annotation.JsonProperty;
public class SiteRange {
@JsonProperty("low")
protected String _low;
@JsonProperty("high")
protected String _high;
public SiteRange() {
}
public SiteRange(String low, String high) {
_low = low;
_high = high;
}
public String getLow() {
return _low;
}
public void setLow(String low) {
_low = low;
}
public String getHigh() {
return _high;
}
public void setHigh(String high) {
_high = high;
}
}