Advertisement
IronJoo

Untitled

Sep 2nd, 2024
56
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.35 KB | None | 1 0
  1. @JsonIgnoreProperties(ignoreUnknown = true)
  2. public class WorkUnitPartnershipExtraData {
  3.  
  4.     // If the partnership is coordinated by the work unit of the user
  5.     @JsonProperty(value = "is_coordinator")
  6.     private boolean coordinator;
  7.  
  8.     // If the partnership is related to public policies
  9.     @JsonProperty(value = "is_related_to_public_policies")
  10.     private boolean relatedToPublicPolicies;
  11.  
  12.     // The institutions that coordinate the partnership
  13.     @JsonProperty(value = "coordinating_institutions")
  14.     private List<GenericInstitution> coordinatingInstitutions;
  15.  
  16.     // The institutions that participate in the partnership
  17.     @JsonProperty(value = "participating_institutions")
  18.     private List<GenericInstitution> participatingInstitutions;
  19.  
  20.     // The stakeholder institutions that participate in the partnership
  21.     @JsonProperty(value = "stakeholder_institutions")
  22.     private List<GenericInstitution> stakeholderInstitutions;
  23.  
  24.     @JsonProperty(value = "user_work_unit_partnership_participations")
  25.     private List<UserWorkUnitPartnershipParticipation> userWorkUnitPartnershipParticipations;
  26.  
  27.     // The date in which the partnership initiated
  28.     @JsonProperty(value = "start_date")
  29.     private DateType startDate;
  30.  
  31.     // The date in which the partnership ended
  32.     @JsonProperty(value = "end_date")
  33.     private DateType endDate;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement