package eu.eudat.models.rda; import java.io.Serializable; import java.util.HashMap; import java.util.List; import java.util.Map; import com.fasterxml.jackson.annotation.*; /** * The DMP Project Items Schema *

* * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "description", "end", "funding", "start", "title" }) @JsonIgnoreProperties(ignoreUnknown = true) public class Project implements Serializable { /** * The DMP Project Description Schema *

* Project description * */ @JsonProperty("description") @JsonPropertyDescription("Project description") private String description; /** * The DMP Project End Date Schema *

* Project end date * (Required) * */ @JsonProperty("end") @JsonPropertyDescription("Project end date") private String end; /** * The DMP Project Funding Schema *

* Funding related with a project * */ @JsonProperty("funding") @JsonPropertyDescription("Funding related with a project") private List funding = null; /** * The DMP Project Start Date Schema *

* Project start date * (Required) * */ @JsonProperty("start") @JsonPropertyDescription("Project start date") private String start; /** * The DMP Project Title Schema *

* Project title * (Required) * */ @JsonProperty("title") @JsonPropertyDescription("Project title") private String title; @JsonIgnore private Map additionalProperties = new HashMap(); private final static long serialVersionUID = 1437619307195890472L; /** * The DMP Project Description Schema *

* Project description * */ @JsonProperty("description") public String getDescription() { return description; } /** * The DMP Project Description Schema *

* Project description * */ @JsonProperty("description") public void setDescription(String description) { this.description = description; } /** * The DMP Project End Date Schema *

* Project end date * (Required) * */ @JsonProperty("end") public String getEnd() { return end; } /** * The DMP Project End Date Schema *

* Project end date * (Required) * */ @JsonProperty("end") public void setEnd(String end) { this.end = end; } /** * The DMP Project Funding Schema *

* Funding related with a project * */ @JsonProperty("funding") public List getFunding() { return funding; } /** * The DMP Project Funding Schema *

* Funding related with a project * */ @JsonProperty("funding") public void setFunding(List funding) { this.funding = funding; } /** * The DMP Project Start Date Schema *

* Project start date * (Required) * */ @JsonProperty("start") public String getStart() { return start; } /** * The DMP Project Start Date Schema *

* Project start date * (Required) * */ @JsonProperty("start") public void setStart(String start) { this.start = start; } /** * The DMP Project Title Schema *

* Project title * (Required) * */ @JsonProperty("title") public String getTitle() { return title; } /** * The DMP Project Title Schema *

* Project title * (Required) * */ @JsonProperty("title") public void setTitle(String title) { this.title = title; } @JsonProperty("additional_properties") public Map getAdditionalProperties() { return this.additionalProperties; } @JsonProperty("additional_properties") public void setAdditionalProperty(String name, Object value) { this.additionalProperties.put(name, value); } }