@@ -25,6 +25,8 @@ class MemberStatusResponse
2525
2626 attr_accessor :has_processed_accounts
2727
28+ attr_accessor :has_processed_account_numbers
29+
2830 attr_accessor :has_processed_transactions
2931
3032 attr_accessor :is_authenticated
@@ -41,6 +43,7 @@ def self.attribute_map
4143 :'connection_status' => :'connection_status' ,
4244 :'guid' => :'guid' ,
4345 :'has_processed_accounts' => :'has_processed_accounts' ,
46+ :'has_processed_account_numbers' => :'has_processed_account_numbers' ,
4447 :'has_processed_transactions' => :'has_processed_transactions' ,
4548 :'is_authenticated' => :'is_authenticated' ,
4649 :'is_being_aggregated' => :'is_being_aggregated' ,
@@ -61,6 +64,7 @@ def self.openapi_types
6164 :'connection_status' => :'String' ,
6265 :'guid' => :'String' ,
6366 :'has_processed_accounts' => :'Boolean' ,
67+ :'has_processed_account_numbers' => :'Boolean' ,
6468 :'has_processed_transactions' => :'Boolean' ,
6569 :'is_authenticated' => :'Boolean' ,
6670 :'is_being_aggregated' => :'Boolean' ,
@@ -75,6 +79,7 @@ def self.openapi_nullable
7579 :'connection_status' ,
7680 :'guid' ,
7781 :'has_processed_accounts' ,
82+ :'has_processed_account_numbers' ,
7883 :'has_processed_transactions' ,
7984 :'is_authenticated' ,
8085 :'is_being_aggregated' ,
@@ -119,6 +124,10 @@ def initialize(attributes = {})
119124 self . has_processed_accounts = attributes [ :'has_processed_accounts' ]
120125 end
121126
127+ if attributes . key? ( :'has_processed_account_numbers' )
128+ self . has_processed_account_numbers = attributes [ :'has_processed_account_numbers' ]
129+ end
130+
122131 if attributes . key? ( :'has_processed_transactions' )
123132 self . has_processed_transactions = attributes [ :'has_processed_transactions' ]
124133 end
@@ -161,6 +170,7 @@ def ==(o)
161170 connection_status == o . connection_status &&
162171 guid == o . guid &&
163172 has_processed_accounts == o . has_processed_accounts &&
173+ has_processed_account_numbers == o . has_processed_account_numbers &&
164174 has_processed_transactions == o . has_processed_transactions &&
165175 is_authenticated == o . is_authenticated &&
166176 is_being_aggregated == o . is_being_aggregated &&
@@ -176,7 +186,7 @@ def eql?(o)
176186 # Calculates hash code according to all attributes.
177187 # @return [Integer] Hash code
178188 def hash
179- [ aggregated_at , challenges , connection_status , guid , has_processed_accounts , has_processed_transactions , is_authenticated , is_being_aggregated , successfully_aggregated_at ] . hash
189+ [ aggregated_at , challenges , connection_status , guid , has_processed_accounts , has_processed_account_numbers , has_processed_transactions , is_authenticated , is_being_aggregated , successfully_aggregated_at ] . hash
180190 end
181191
182192 # Builds the object from hash
0 commit comments