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

com.imsweb.seerapi.client.disease.PrimarySite Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy