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

com.imsweb.seerapi.client.naaccr.NaaccrVersion Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy