openaire-usage-stats-sushil.../src/main/java/eu/dnetlib/usagestats/sushilite/domain/COUNTER_Item_Dates.java

46 lines
903 B
Java
Raw Permalink Normal View History

2021-01-05 13:22:04 +01:00
package eu.dnetlib.usagestats.sushilite.domain;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
2021-02-22 18:38:10 +01:00
* Created by D.Pierrakos
2021-01-05 13:22:04 +01:00
*/
2021-02-22 18:38:10 +01:00
public class COUNTER_Item_Dates {
2021-01-05 13:22:04 +01:00
private String type;
private String value;
2021-02-22 18:38:10 +01:00
public COUNTER_Item_Dates() {
2021-01-05 13:22:04 +01:00
}
2021-02-22 18:38:10 +01:00
public COUNTER_Item_Dates(String type, String value) {
2021-01-05 13:22:04 +01:00
this.type = type;
this.value = value;
}
@JsonProperty("Type")
public String getType() {
return type;
}
@JsonProperty("Value")
public String getValue() {
return value;
}
2023-03-27 11:34:53 +02:00
public void setType(String type) {
this.type = type;
}
public void setValue(String value) {
this.value = value;
}
2023-03-28 08:48:31 +02:00
@Override
public String toString() {
return "COUNTER_Item_Dates{" +
"type='" + type + '\'' +
", value='" + value + '\'' +
'}';
}
2021-01-05 13:22:04 +01:00
}