Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @JsonIgnoreProperties(ignoreUnknown = true)
- public class WorkUnitPartnershipExtraData {
- // If the partnership is coordinated by the work unit of the user
- @JsonProperty(value = "is_coordinator")
- private boolean coordinator;
- // If the partnership is related to public policies
- @JsonProperty(value = "is_related_to_public_policies")
- private boolean relatedToPublicPolicies;
- // The institutions that coordinate the partnership
- @JsonProperty(value = "coordinating_institutions")
- private List<GenericInstitution> coordinatingInstitutions;
- // The institutions that participate in the partnership
- @JsonProperty(value = "participating_institutions")
- private List<GenericInstitution> participatingInstitutions;
- // The stakeholder institutions that participate in the partnership
- @JsonProperty(value = "stakeholder_institutions")
- private List<GenericInstitution> stakeholderInstitutions;
- @JsonProperty(value = "user_work_unit_partnership_participations")
- private List<UserWorkUnitPartnershipParticipation> userWorkUnitPartnershipParticipations;
- // The date in which the partnership initiated
- @JsonProperty(value = "start_date")
- private DateType startDate;
- // The date in which the partnership ended
- @JsonProperty(value = "end_date")
- private DateType endDate;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement