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

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

There is a newer version: 5.7
Show newest version
package com.imsweb.seerapi.client.disease;

import com.fasterxml.jackson.annotation.JsonProperty;

public class DateRange {

    @JsonProperty("start")
    protected String _startDate;
    @JsonProperty("end")
    protected String _endDate;

    /**
     * Default constructor
     */
    public DateRange() {
    }

    public String getStartDate() {
        return _startDate;
    }

    public void setStartDate(String startDate) {
        _startDate = startDate;
    }

    public String getEndDate() {
        return _endDate;
    }

    public void setEndDate(String endDate) {
        _endDate = endDate;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy