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

28 lines
561 B
Java
Executable File

package eu.dnetlib.usagestats.sushilite.domain;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Created by dpie on 15/01/2021.
*/
public class COUNTER_Publisher_Identifiers {
private String type = null;
private String value = null;
public COUNTER_Publisher_Identifiers(String type, String value) {
this.type = type;
this.value = value;
}
@JsonProperty("Type")
public String getType() {
return type;
}
@JsonProperty("Value")
public String getValue() {
return value;
}
}