com.imsweb.seerapi.client.disease.YearRangeBoolean 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 YearRangeBoolean extends YearRange {
@JsonProperty("value")
protected Boolean _value;
public Boolean getValue() {
return _value;
}
public void setValue(Boolean value) {
_value = value;
}
}