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

com.imsweb.seerapi.client.disease.YearRangeBoolean 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 YearRangeBoolean extends YearRange {

    @JsonProperty("value")
    protected Boolean _value;

    public Boolean getValue() {
        return _value;
    }

    public void setValue(Boolean value) {
        _value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy