@@ -84,6 +84,10 @@ public class MemberResponse {
8484 @ SerializedName (SERIALIZED_NAME_IS_MANAGED_BY_USER )
8585 private Boolean isManagedByUser ;
8686
87+ public static final String SERIALIZED_NAME_IS_MANUAL = "is_manual" ;
88+ @ SerializedName (SERIALIZED_NAME_IS_MANUAL )
89+ private Boolean isManual ;
90+
8791 public static final String SERIALIZED_NAME_IS_OAUTH = "is_oauth" ;
8892 @ SerializedName (SERIALIZED_NAME_IS_OAUTH )
8993 private Boolean isOauth ;
@@ -92,6 +96,14 @@ public class MemberResponse {
9296 @ SerializedName (SERIALIZED_NAME_METADATA )
9397 private String metadata ;
9498
99+ public static final String SERIALIZED_NAME_MOST_RECENT_JOB_DETAIL_CODE = "most_recent_job_detail_code" ;
100+ @ SerializedName (SERIALIZED_NAME_MOST_RECENT_JOB_DETAIL_CODE )
101+ private String mostRecentJobDetailCode ;
102+
103+ public static final String SERIALIZED_NAME_MOST_RECENT_JOB_DETAIL_TEXT = "most_recent_job_detail_text" ;
104+ @ SerializedName (SERIALIZED_NAME_MOST_RECENT_JOB_DETAIL_TEXT )
105+ private String mostRecentJobDetailText ;
106+
95107 public static final String SERIALIZED_NAME_NAME = "name" ;
96108 @ SerializedName (SERIALIZED_NAME_NAME )
97109 private String name ;
@@ -283,6 +295,27 @@ public void setIsManagedByUser(Boolean isManagedByUser) {
283295 }
284296
285297
298+ public MemberResponse isManual (Boolean isManual ) {
299+
300+ this .isManual = isManual ;
301+ return this ;
302+ }
303+
304+ /**
305+ * Get isManual
306+ * @return isManual
307+ **/
308+ @ javax .annotation .Nullable
309+ public Boolean getIsManual () {
310+ return isManual ;
311+ }
312+
313+
314+ public void setIsManual (Boolean isManual ) {
315+ this .isManual = isManual ;
316+ }
317+
318+
286319 public MemberResponse isOauth (Boolean isOauth ) {
287320
288321 this .isOauth = isOauth ;
@@ -325,6 +358,48 @@ public void setMetadata(String metadata) {
325358 }
326359
327360
361+ public MemberResponse mostRecentJobDetailCode (String mostRecentJobDetailCode ) {
362+
363+ this .mostRecentJobDetailCode = mostRecentJobDetailCode ;
364+ return this ;
365+ }
366+
367+ /**
368+ * Get mostRecentJobDetailCode
369+ * @return mostRecentJobDetailCode
370+ **/
371+ @ javax .annotation .Nullable
372+ public String getMostRecentJobDetailCode () {
373+ return mostRecentJobDetailCode ;
374+ }
375+
376+
377+ public void setMostRecentJobDetailCode (String mostRecentJobDetailCode ) {
378+ this .mostRecentJobDetailCode = mostRecentJobDetailCode ;
379+ }
380+
381+
382+ public MemberResponse mostRecentJobDetailText (String mostRecentJobDetailText ) {
383+
384+ this .mostRecentJobDetailText = mostRecentJobDetailText ;
385+ return this ;
386+ }
387+
388+ /**
389+ * Get mostRecentJobDetailText
390+ * @return mostRecentJobDetailText
391+ **/
392+ @ javax .annotation .Nullable
393+ public String getMostRecentJobDetailText () {
394+ return mostRecentJobDetailText ;
395+ }
396+
397+
398+ public void setMostRecentJobDetailText (String mostRecentJobDetailText ) {
399+ this .mostRecentJobDetailText = mostRecentJobDetailText ;
400+ }
401+
402+
328403 public MemberResponse name (String name ) {
329404
330405 this .name = name ;
@@ -448,8 +523,11 @@ public boolean equals(Object o) {
448523 Objects .equals (this .institutionCode , memberResponse .institutionCode ) &&
449524 Objects .equals (this .isBeingAggregated , memberResponse .isBeingAggregated ) &&
450525 Objects .equals (this .isManagedByUser , memberResponse .isManagedByUser ) &&
526+ Objects .equals (this .isManual , memberResponse .isManual ) &&
451527 Objects .equals (this .isOauth , memberResponse .isOauth ) &&
452528 Objects .equals (this .metadata , memberResponse .metadata ) &&
529+ Objects .equals (this .mostRecentJobDetailCode , memberResponse .mostRecentJobDetailCode ) &&
530+ Objects .equals (this .mostRecentJobDetailText , memberResponse .mostRecentJobDetailText ) &&
453531 Objects .equals (this .name , memberResponse .name ) &&
454532 Objects .equals (this .oauthWindowUri , memberResponse .oauthWindowUri ) &&
455533 Objects .equals (this .successfullyAggregatedAt , memberResponse .successfullyAggregatedAt ) &&
@@ -463,7 +541,7 @@ private static <T> boolean equalsNullable(JsonNullable<T> a, JsonNullable<T> b)
463541
464542 @ Override
465543 public int hashCode () {
466- return Objects .hash (aggregatedAt , backgroundAggregationIsDisabled , connectionStatus , guid , id , institutionCode , isBeingAggregated , isManagedByUser , isOauth , metadata , name , oauthWindowUri , successfullyAggregatedAt , userGuid , userId );
544+ return Objects .hash (aggregatedAt , backgroundAggregationIsDisabled , connectionStatus , guid , id , institutionCode , isBeingAggregated , isManagedByUser , isManual , isOauth , metadata , mostRecentJobDetailCode , mostRecentJobDetailText , name , oauthWindowUri , successfullyAggregatedAt , userGuid , userId );
467545 }
468546
469547 private static <T > int hashCodeNullable (JsonNullable <T > a ) {
@@ -485,8 +563,11 @@ public String toString() {
485563 sb .append (" institutionCode: " ).append (toIndentedString (institutionCode )).append ("\n " );
486564 sb .append (" isBeingAggregated: " ).append (toIndentedString (isBeingAggregated )).append ("\n " );
487565 sb .append (" isManagedByUser: " ).append (toIndentedString (isManagedByUser )).append ("\n " );
566+ sb .append (" isManual: " ).append (toIndentedString (isManual )).append ("\n " );
488567 sb .append (" isOauth: " ).append (toIndentedString (isOauth )).append ("\n " );
489568 sb .append (" metadata: " ).append (toIndentedString (metadata )).append ("\n " );
569+ sb .append (" mostRecentJobDetailCode: " ).append (toIndentedString (mostRecentJobDetailCode )).append ("\n " );
570+ sb .append (" mostRecentJobDetailText: " ).append (toIndentedString (mostRecentJobDetailText )).append ("\n " );
490571 sb .append (" name: " ).append (toIndentedString (name )).append ("\n " );
491572 sb .append (" oauthWindowUri: " ).append (toIndentedString (oauthWindowUri )).append ("\n " );
492573 sb .append (" successfullyAggregatedAt: " ).append (toIndentedString (successfullyAggregatedAt )).append ("\n " );
@@ -522,8 +603,11 @@ private String toIndentedString(Object o) {
522603 openapiFields .add ("institution_code" );
523604 openapiFields .add ("is_being_aggregated" );
524605 openapiFields .add ("is_managed_by_user" );
606+ openapiFields .add ("is_manual" );
525607 openapiFields .add ("is_oauth" );
526608 openapiFields .add ("metadata" );
609+ openapiFields .add ("most_recent_job_detail_code" );
610+ openapiFields .add ("most_recent_job_detail_text" );
527611 openapiFields .add ("name" );
528612 openapiFields .add ("oauth_window_uri" );
529613 openapiFields .add ("successfully_aggregated_at" );
@@ -573,6 +657,12 @@ public static void validateJsonElement(JsonElement jsonElement) throws IOExcepti
573657 if ((jsonObj .get ("metadata" ) != null && !jsonObj .get ("metadata" ).isJsonNull ()) && !jsonObj .get ("metadata" ).isJsonPrimitive ()) {
574658 throw new IllegalArgumentException (String .format ("Expected the field `metadata` to be a primitive type in the JSON string but got `%s`" , jsonObj .get ("metadata" ).toString ()));
575659 }
660+ if ((jsonObj .get ("most_recent_job_detail_code" ) != null && !jsonObj .get ("most_recent_job_detail_code" ).isJsonNull ()) && !jsonObj .get ("most_recent_job_detail_code" ).isJsonPrimitive ()) {
661+ throw new IllegalArgumentException (String .format ("Expected the field `most_recent_job_detail_code` to be a primitive type in the JSON string but got `%s`" , jsonObj .get ("most_recent_job_detail_code" ).toString ()));
662+ }
663+ if ((jsonObj .get ("most_recent_job_detail_text" ) != null && !jsonObj .get ("most_recent_job_detail_text" ).isJsonNull ()) && !jsonObj .get ("most_recent_job_detail_text" ).isJsonPrimitive ()) {
664+ throw new IllegalArgumentException (String .format ("Expected the field `most_recent_job_detail_text` to be a primitive type in the JSON string but got `%s`" , jsonObj .get ("most_recent_job_detail_text" ).toString ()));
665+ }
576666 if ((jsonObj .get ("name" ) != null && !jsonObj .get ("name" ).isJsonNull ()) && !jsonObj .get ("name" ).isJsonPrimitive ()) {
577667 throw new IllegalArgumentException (String .format ("Expected the field `name` to be a primitive type in the JSON string but got `%s`" , jsonObj .get ("name" ).toString ()));
578668 }
0 commit comments