com.imsweb.seerapi.client.naaccr.NaaccrVersion 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.naaccr;
import com.fasterxml.jackson.annotation.JsonProperty;
public class NaaccrVersion {
@JsonProperty("version")
protected String _version;
@JsonProperty("name")
protected String _name;
@JsonProperty("length")
protected Integer _length;
@JsonProperty("description")
protected String _description;
@JsonProperty("style")
protected String _style;
public String getVersion() {
return _version;
}
public void setVersion(String version) {
_version = version;
}
public String getName() {
return _name;
}
public void setName(String name) {
_name = name;
}
public Integer getLength() {
return _length;
}
public void setLength(Integer length) {
_length = length;
}
public String getDescription() {
return _description;
}
public void setDescription(String description) {
_description = description;
}
public String getStyle() {
return _style;
}
public void setStyle(String style) {
_style = style;
}
}