com.imsweb.seerapi.client.disease.PrimarySite 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 PrimarySite {
@JsonProperty("value")
private String _value;
@JsonProperty("label")
private String _label;
public String getValue() {
return _value;
}
public void setValue(String value) {
_value = value;
}
public String getLabel() {
return _label;
}
public void setLabel(String label) {
_label = label;
}
}