dnet-hadoop/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/APC.java

30 lines
657 B
Java
Raw Normal View History

2020-06-15 11:06:56 +02:00
package eu.dnetlib.dhp.schema.dump.oaf;
import java.io.Serializable;
2020-08-13 17:05:06 +02:00
/**
2020-08-13 18:23:24 +02:00
* Used to refer to the Article Processing Charge information. Not dumped in this release. It contains two parameters: -
* currency of type String to store the currency of the APC - amount of type String to stores the charged amount
2020-08-13 17:05:06 +02:00
*/
public class APC implements Serializable {
2020-06-15 11:06:56 +02:00
private String currency;
private String amount;
2020-06-15 11:06:56 +02:00
public String getCurrency() {
return currency;
}
2020-06-15 11:06:56 +02:00
public void setCurrency(String currency) {
this.currency = currency;
}
2020-06-15 11:06:56 +02:00
public String getAmount() {
return amount;
}
2020-06-15 11:06:56 +02:00
public void setAmount(String amount) {
this.amount = amount;
}
}