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

28 lines
551 B
Java
Raw 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 dpie on 15/01/2021.
2021-01-05 13:22:04 +01:00
*/
2021-02-22 18:38:10 +01:00
public class COUNTER_Item_Identifiers {
2021-01-05 13:22:04 +01:00
2021-02-22 18:38:10 +01:00
private String type = null;
private String value = null;
2021-01-05 13:22:04 +01:00
2021-02-22 18:38:10 +01:00
public COUNTER_Item_Identifiers(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;
}
}