com.imsweb.seerapi.client.disease.DateRangeString 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 com.fasterxml.jackson.annotation.JsonProperty;
public class DateRangeString extends DateRange {
@JsonProperty("value")
protected String _value;
/**
* Default constructor
*/
public DateRangeString() {
}
public String getValue() {
return _value;
}
public void setValue(String value) {
_value = value;
}
}