package eu.dnetlib.dhp.common.api.zenodo; import java.io.Serializable; import java.util.List; public class Metadata implements Serializable { private String access_right; private List communities; private List creators; private String description; private String doi; private List grants; private List keywords; private String language; private String license; private PrereserveDoi prereserve_doi; private String publication_date; private List references; private List related_identifiers; private String title; private String upload_type; private String version; public String getUpload_type() { return upload_type; } public void setUpload_type(String upload_type) { this.upload_type = upload_type; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } public String getAccess_right() { return access_right; } public void setAccess_right(String access_right) { this.access_right = access_right; } public List getCommunities() { return communities; } public void setCommunities(List communities) { this.communities = communities; } public List getCreators() { return creators; } public void setCreators(List creators) { this.creators = creators; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getDoi() { return doi; } public void setDoi(String doi) { this.doi = doi; } public List getGrants() { return grants; } public void setGrants(List grants) { this.grants = grants; } public List getKeywords() { return keywords; } public void setKeywords(List keywords) { this.keywords = keywords; } public String getLanguage() { return language; } public void setLanguage(String language) { this.language = language; } public String getLicense() { return license; } public void setLicense(String license) { this.license = license; } public PrereserveDoi getPrereserve_doi() { return prereserve_doi; } public void setPrereserve_doi(PrereserveDoi prereserve_doi) { this.prereserve_doi = prereserve_doi; } public String getPublication_date() { return publication_date; } public void setPublication_date(String publication_date) { this.publication_date = publication_date; } public List getReferences() { return references; } public void setReferences(List references) { this.references = references; } public List getRelated_identifiers() { return related_identifiers; } public void setRelated_identifiers(List related_identifiers) { this.related_identifiers = related_identifiers; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } }