5454 */
5555@ javax .annotation .Generated (value = "org.openapitools.codegen.languages.JavaClientCodegen" )
5656public class MemberResponse {
57+ public static final String SERIALIZED_NAME_ACTIONABLE_ERROR = "actionable_error" ;
58+ @ SerializedName (SERIALIZED_NAME_ACTIONABLE_ERROR )
59+ private String actionableError ;
60+
5761 public static final String SERIALIZED_NAME_AGGREGATED_AT = "aggregated_at" ;
5862 @ SerializedName (SERIALIZED_NAME_AGGREGATED_AT )
5963 private String aggregatedAt ;
@@ -133,6 +137,27 @@ public class MemberResponse {
133137 public MemberResponse () {
134138 }
135139
140+ public MemberResponse actionableError (String actionableError ) {
141+
142+ this .actionableError = actionableError ;
143+ return this ;
144+ }
145+
146+ /**
147+ * Get actionableError
148+ * @return actionableError
149+ **/
150+ @ javax .annotation .Nullable
151+ public String getActionableError () {
152+ return actionableError ;
153+ }
154+
155+
156+ public void setActionableError (String actionableError ) {
157+ this .actionableError = actionableError ;
158+ }
159+
160+
136161 public MemberResponse aggregatedAt (String aggregatedAt ) {
137162
138163 this .aggregatedAt = aggregatedAt ;
@@ -550,7 +575,8 @@ public boolean equals(Object o) {
550575 return false ;
551576 }
552577 MemberResponse memberResponse = (MemberResponse ) o ;
553- return Objects .equals (this .aggregatedAt , memberResponse .aggregatedAt ) &&
578+ return Objects .equals (this .actionableError , memberResponse .actionableError ) &&
579+ Objects .equals (this .aggregatedAt , memberResponse .aggregatedAt ) &&
554580 Objects .equals (this .backgroundAggregationIsDisabled , memberResponse .backgroundAggregationIsDisabled ) &&
555581 Objects .equals (this .connectionStatus , memberResponse .connectionStatus ) &&
556582 Objects .equals (this .guid , memberResponse .guid ) &&
@@ -577,7 +603,7 @@ private static <T> boolean equalsNullable(JsonNullable<T> a, JsonNullable<T> b)
577603
578604 @ Override
579605 public int hashCode () {
580- return Objects .hash (aggregatedAt , backgroundAggregationIsDisabled , connectionStatus , guid , id , institutionCode , isBeingAggregated , isManagedByUser , isManual , isOauth , metadata , mostRecentJobDetailCode , mostRecentJobDetailText , name , oauthWindowUri , successfullyAggregatedAt , useCases , userGuid , userId );
606+ return Objects .hash (actionableError , aggregatedAt , backgroundAggregationIsDisabled , connectionStatus , guid , id , institutionCode , isBeingAggregated , isManagedByUser , isManual , isOauth , metadata , mostRecentJobDetailCode , mostRecentJobDetailText , name , oauthWindowUri , successfullyAggregatedAt , useCases , userGuid , userId );
581607 }
582608
583609 private static <T > int hashCodeNullable (JsonNullable <T > a ) {
@@ -591,6 +617,7 @@ private static <T> int hashCodeNullable(JsonNullable<T> a) {
591617 public String toString () {
592618 StringBuilder sb = new StringBuilder ();
593619 sb .append ("class MemberResponse {\n " );
620+ sb .append (" actionableError: " ).append (toIndentedString (actionableError )).append ("\n " );
594621 sb .append (" aggregatedAt: " ).append (toIndentedString (aggregatedAt )).append ("\n " );
595622 sb .append (" backgroundAggregationIsDisabled: " ).append (toIndentedString (backgroundAggregationIsDisabled )).append ("\n " );
596623 sb .append (" connectionStatus: " ).append (toIndentedString (connectionStatus )).append ("\n " );
@@ -632,6 +659,7 @@ private String toIndentedString(Object o) {
632659 static {
633660 // a set of all properties/fields (JSON key names)
634661 openapiFields = new HashSet <String >();
662+ openapiFields .add ("actionable_error" );
635663 openapiFields .add ("aggregated_at" );
636664 openapiFields .add ("background_aggregation_is_disabled" );
637665 openapiFields .add ("connection_status" );
@@ -677,6 +705,9 @@ public static void validateJsonElement(JsonElement jsonElement) throws IOExcepti
677705 }
678706 }
679707 JsonObject jsonObj = jsonElement .getAsJsonObject ();
708+ if ((jsonObj .get ("actionable_error" ) != null && !jsonObj .get ("actionable_error" ).isJsonNull ()) && !jsonObj .get ("actionable_error" ).isJsonPrimitive ()) {
709+ throw new IllegalArgumentException (String .format ("Expected the field `actionable_error` to be a primitive type in the JSON string but got `%s`" , jsonObj .get ("actionable_error" ).toString ()));
710+ }
680711 if ((jsonObj .get ("aggregated_at" ) != null && !jsonObj .get ("aggregated_at" ).isJsonNull ()) && !jsonObj .get ("aggregated_at" ).isJsonPrimitive ()) {
681712 throw new IllegalArgumentException (String .format ("Expected the field `aggregated_at` to be a primitive type in the JSON string but got `%s`" , jsonObj .get ("aggregated_at" ).toString ()));
682713 }
0 commit comments