package eu.dnetlib.dhp.schema.oaf; import java.io.Serializable; import java.util.List; public class OtherResearchProducts extends Result implements Serializable { private List> contactperson; private List> contactgroup; private List> tool; public List> getContactperson() { return contactperson; } public OtherResearchProducts setContactperson(List> contactperson) { this.contactperson = contactperson; return this; } public List> getContactgroup() { return contactgroup; } public OtherResearchProducts setContactgroup(List> contactgroup) { this.contactgroup = contactgroup; return this; } public List> getTool() { return tool; } public OtherResearchProducts setTool(List> tool) { this.tool = tool; return this; } @Override protected OtherResearchProducts self() { return this; } }