All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.imsweb.seerapi.client.surgery.SurgeryRow Maven / Gradle / Ivy

There is a newer version: 5.7
Show newest version
/*
 * 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;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy