com.imsweb.seerapi.client.surgery.SurgeryRow 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) 2014 Information Management Services, Inc.
*/
package com.imsweb.seerapi.client.surgery;
import com.fasterxml.jackson.annotation.JsonProperty;
public class SurgeryRow {
@JsonProperty("code")
protected String _code;
@JsonProperty("description")
protected String _description;
@JsonProperty("level")
protected Integer _level;
@JsonProperty("line_break")
protected Boolean _lineBreak;
public String getCode() {
return _code;
}
public void setCode(String code) {
_code = code;
}
public String getDescription() {
return _description;
}
public void setDescription(String description) {
_description = description;
}
public Integer getLevel() {
return _level;
}
public void setLevel(Integer level) {
_level = level;
}
public Boolean getLineBreak() {
return _lineBreak;
}
public void setLineBreak(Boolean lineBreak) {
_lineBreak = lineBreak;
}
}