@@ -39,17 +39,19 @@ public partial class MemberStatusResponse : IEquatable<MemberStatusResponse>, IV
3939 /// <param name="connectionStatus">connectionStatus.</param>
4040 /// <param name="guid">guid.</param>
4141 /// <param name="hasProcessedAccounts">hasProcessedAccounts.</param>
42+ /// <param name="hasProcessedAccountNumbers">hasProcessedAccountNumbers.</param>
4243 /// <param name="hasProcessedTransactions">hasProcessedTransactions.</param>
4344 /// <param name="isAuthenticated">isAuthenticated.</param>
4445 /// <param name="isBeingAggregated">isBeingAggregated.</param>
4546 /// <param name="successfullyAggregatedAt">successfullyAggregatedAt.</param>
46- public MemberStatusResponse ( string aggregatedAt = default ( string ) , List < ChallengeResponse > challenges = default ( List < ChallengeResponse > ) , string connectionStatus = default ( string ) , string guid = default ( string ) , bool ? hasProcessedAccounts = default ( bool ? ) , bool ? hasProcessedTransactions = default ( bool ? ) , bool ? isAuthenticated = default ( bool ? ) , bool ? isBeingAggregated = default ( bool ? ) , string successfullyAggregatedAt = default ( string ) )
47+ public MemberStatusResponse ( string aggregatedAt = default ( string ) , List < ChallengeResponse > challenges = default ( List < ChallengeResponse > ) , string connectionStatus = default ( string ) , string guid = default ( string ) , bool ? hasProcessedAccounts = default ( bool ? ) , bool ? hasProcessedAccountNumbers = default ( bool ? ) , bool ? hasProcessedTransactions = default ( bool ? ) , bool ? isAuthenticated = default ( bool ? ) , bool ? isBeingAggregated = default ( bool ? ) , string successfullyAggregatedAt = default ( string ) )
4748 {
4849 this . AggregatedAt = aggregatedAt ;
4950 this . Challenges = challenges ;
5051 this . ConnectionStatus = connectionStatus ;
5152 this . Guid = guid ;
5253 this . HasProcessedAccounts = hasProcessedAccounts ;
54+ this . HasProcessedAccountNumbers = hasProcessedAccountNumbers ;
5355 this . HasProcessedTransactions = hasProcessedTransactions ;
5456 this . IsAuthenticated = isAuthenticated ;
5557 this . IsBeingAggregated = isBeingAggregated ;
@@ -90,6 +92,13 @@ public partial class MemberStatusResponse : IEquatable<MemberStatusResponse>, IV
9092 [ DataMember ( Name = "has_processed_accounts" , EmitDefaultValue = true ) ]
9193 public bool ? HasProcessedAccounts { get ; set ; }
9294
95+ /// <summary>
96+ /// Gets or Sets HasProcessedAccountNumbers
97+ /// </summary>
98+ /// <example>true</example>
99+ [ DataMember ( Name = "has_processed_account_numbers" , EmitDefaultValue = true ) ]
100+ public bool ? HasProcessedAccountNumbers { get ; set ; }
101+
93102 /// <summary>
94103 /// Gets or Sets HasProcessedTransactions
95104 /// </summary>
@@ -131,6 +140,7 @@ public override string ToString()
131140 sb . Append ( " ConnectionStatus: " ) . Append ( ConnectionStatus ) . Append ( "\n " ) ;
132141 sb . Append ( " Guid: " ) . Append ( Guid ) . Append ( "\n " ) ;
133142 sb . Append ( " HasProcessedAccounts: " ) . Append ( HasProcessedAccounts ) . Append ( "\n " ) ;
143+ sb . Append ( " HasProcessedAccountNumbers: " ) . Append ( HasProcessedAccountNumbers ) . Append ( "\n " ) ;
134144 sb . Append ( " HasProcessedTransactions: " ) . Append ( HasProcessedTransactions ) . Append ( "\n " ) ;
135145 sb . Append ( " IsAuthenticated: " ) . Append ( IsAuthenticated ) . Append ( "\n " ) ;
136146 sb . Append ( " IsBeingAggregated: " ) . Append ( IsBeingAggregated ) . Append ( "\n " ) ;
@@ -196,6 +206,11 @@ public bool Equals(MemberStatusResponse input)
196206 ( this . HasProcessedAccounts != null &&
197207 this . HasProcessedAccounts . Equals ( input . HasProcessedAccounts ) )
198208 ) &&
209+ (
210+ this . HasProcessedAccountNumbers == input . HasProcessedAccountNumbers ||
211+ ( this . HasProcessedAccountNumbers != null &&
212+ this . HasProcessedAccountNumbers . Equals ( input . HasProcessedAccountNumbers ) )
213+ ) &&
199214 (
200215 this . HasProcessedTransactions == input . HasProcessedTransactions ||
201216 ( this . HasProcessedTransactions != null &&
@@ -247,6 +262,10 @@ public override int GetHashCode()
247262 {
248263 hashCode = ( hashCode * 59 ) + this . HasProcessedAccounts . GetHashCode ( ) ;
249264 }
265+ if ( this . HasProcessedAccountNumbers != null )
266+ {
267+ hashCode = ( hashCode * 59 ) + this . HasProcessedAccountNumbers . GetHashCode ( ) ;
268+ }
250269 if ( this . HasProcessedTransactions != null )
251270 {
252271 hashCode = ( hashCode * 59 ) + this . HasProcessedTransactions . GetHashCode ( ) ;
0 commit comments