package eu.dnetlib.dhp.communityapi.model; import java.io.Serializable; import java.util.List; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; /** * @author miriam.baglioni * @Date 09/10/23 */ @JsonIgnoreProperties(ignoreUnknown = true) public class ContentModel implements Serializable { private List content; private Integer totalPages; private Boolean last; private Integer number; public List getContent() { return content; } public void setContent(List content) { this.content = content; } public Integer getTotalPages() { return totalPages; } public void setTotalPages(Integer totalPages) { this.totalPages = totalPages; } public Boolean getLast() { return last; } public void setLast(Boolean last) { this.last = last; } public Integer getNumber() { return number; } public void setNumber(Integer number) { this.number = number; } }