package eu.dnetlib.usagestats.sushilite.domain; import com.fasterxml.jackson.annotation.JsonProperty; /** * Created by D.Pierrakos */ public class COUNTER_Dataset_Dates { private String type; private String value; public COUNTER_Dataset_Dates() { } public COUNTER_Dataset_Dates(String type, String value) { this.type = type; this.value = value; } @JsonProperty("Type") public String getType() { return type; } @JsonProperty("Value") public String getValue() { return value; } public void setType(String type) { this.type = type; } public void setValue(String value) { this.value = value; } @Override public String toString() { return "COUNTER_Dataset_Dates{" + "type='" + type + '\'' + ", value='" + value + '\'' + '}'; } }