@@ -75,6 +75,10 @@ public class MemberStatusResponse {
7575 @ SerializedName (SERIALIZED_NAME_HAS_PROCESSED_ACCOUNTS )
7676 private Boolean hasProcessedAccounts ;
7777
78+ public static final String SERIALIZED_NAME_HAS_PROCESSED_ACCOUNT_NUMBERS = "has_processed_account_numbers" ;
79+ @ SerializedName (SERIALIZED_NAME_HAS_PROCESSED_ACCOUNT_NUMBERS )
80+ private Boolean hasProcessedAccountNumbers ;
81+
7882 public static final String SERIALIZED_NAME_HAS_PROCESSED_TRANSACTIONS = "has_processed_transactions" ;
7983 @ SerializedName (SERIALIZED_NAME_HAS_PROCESSED_TRANSACTIONS )
8084 private Boolean hasProcessedTransactions ;
@@ -207,6 +211,27 @@ public void setHasProcessedAccounts(Boolean hasProcessedAccounts) {
207211 }
208212
209213
214+ public MemberStatusResponse hasProcessedAccountNumbers (Boolean hasProcessedAccountNumbers ) {
215+
216+ this .hasProcessedAccountNumbers = hasProcessedAccountNumbers ;
217+ return this ;
218+ }
219+
220+ /**
221+ * Get hasProcessedAccountNumbers
222+ * @return hasProcessedAccountNumbers
223+ **/
224+ @ javax .annotation .Nullable
225+ public Boolean getHasProcessedAccountNumbers () {
226+ return hasProcessedAccountNumbers ;
227+ }
228+
229+
230+ public void setHasProcessedAccountNumbers (Boolean hasProcessedAccountNumbers ) {
231+ this .hasProcessedAccountNumbers = hasProcessedAccountNumbers ;
232+ }
233+
234+
210235 public MemberStatusResponse hasProcessedTransactions (Boolean hasProcessedTransactions ) {
211236
212237 this .hasProcessedTransactions = hasProcessedTransactions ;
@@ -306,6 +331,7 @@ public boolean equals(Object o) {
306331 Objects .equals (this .connectionStatus , memberStatusResponse .connectionStatus ) &&
307332 Objects .equals (this .guid , memberStatusResponse .guid ) &&
308333 Objects .equals (this .hasProcessedAccounts , memberStatusResponse .hasProcessedAccounts ) &&
334+ Objects .equals (this .hasProcessedAccountNumbers , memberStatusResponse .hasProcessedAccountNumbers ) &&
309335 Objects .equals (this .hasProcessedTransactions , memberStatusResponse .hasProcessedTransactions ) &&
310336 Objects .equals (this .isAuthenticated , memberStatusResponse .isAuthenticated ) &&
311337 Objects .equals (this .isBeingAggregated , memberStatusResponse .isBeingAggregated ) &&
@@ -318,7 +344,7 @@ private static <T> boolean equalsNullable(JsonNullable<T> a, JsonNullable<T> b)
318344
319345 @ Override
320346 public int hashCode () {
321- return Objects .hash (aggregatedAt , challenges , connectionStatus , guid , hasProcessedAccounts , hasProcessedTransactions , isAuthenticated , isBeingAggregated , successfullyAggregatedAt );
347+ return Objects .hash (aggregatedAt , challenges , connectionStatus , guid , hasProcessedAccounts , hasProcessedAccountNumbers , hasProcessedTransactions , isAuthenticated , isBeingAggregated , successfullyAggregatedAt );
322348 }
323349
324350 private static <T > int hashCodeNullable (JsonNullable <T > a ) {
@@ -337,6 +363,7 @@ public String toString() {
337363 sb .append (" connectionStatus: " ).append (toIndentedString (connectionStatus )).append ("\n " );
338364 sb .append (" guid: " ).append (toIndentedString (guid )).append ("\n " );
339365 sb .append (" hasProcessedAccounts: " ).append (toIndentedString (hasProcessedAccounts )).append ("\n " );
366+ sb .append (" hasProcessedAccountNumbers: " ).append (toIndentedString (hasProcessedAccountNumbers )).append ("\n " );
340367 sb .append (" hasProcessedTransactions: " ).append (toIndentedString (hasProcessedTransactions )).append ("\n " );
341368 sb .append (" isAuthenticated: " ).append (toIndentedString (isAuthenticated )).append ("\n " );
342369 sb .append (" isBeingAggregated: " ).append (toIndentedString (isBeingAggregated )).append ("\n " );
@@ -368,6 +395,7 @@ private String toIndentedString(Object o) {
368395 openapiFields .add ("connection_status" );
369396 openapiFields .add ("guid" );
370397 openapiFields .add ("has_processed_accounts" );
398+ openapiFields .add ("has_processed_account_numbers" );
371399 openapiFields .add ("has_processed_transactions" );
372400 openapiFields .add ("is_authenticated" );
373401 openapiFields .add ("is_being_aggregated" );
0 commit comments