@@ -31,10 +31,16 @@ class MemberResponse
3131
3232 attr_accessor :is_managed_by_user
3333
34+ attr_accessor :is_manual
35+
3436 attr_accessor :is_oauth
3537
3638 attr_accessor :metadata
3739
40+ attr_accessor :most_recent_job_detail_code
41+
42+ attr_accessor :most_recent_job_detail_text
43+
3844 attr_accessor :name
3945
4046 attr_accessor :oauth_window_uri
@@ -56,8 +62,11 @@ def self.attribute_map
5662 :'institution_code' => :'institution_code' ,
5763 :'is_being_aggregated' => :'is_being_aggregated' ,
5864 :'is_managed_by_user' => :'is_managed_by_user' ,
65+ :'is_manual' => :'is_manual' ,
5966 :'is_oauth' => :'is_oauth' ,
6067 :'metadata' => :'metadata' ,
68+ :'most_recent_job_detail_code' => :'most_recent_job_detail_code' ,
69+ :'most_recent_job_detail_text' => :'most_recent_job_detail_text' ,
6170 :'name' => :'name' ,
6271 :'oauth_window_uri' => :'oauth_window_uri' ,
6372 :'successfully_aggregated_at' => :'successfully_aggregated_at' ,
@@ -82,8 +91,11 @@ def self.openapi_types
8291 :'institution_code' => :'String' ,
8392 :'is_being_aggregated' => :'Boolean' ,
8493 :'is_managed_by_user' => :'Boolean' ,
94+ :'is_manual' => :'Boolean' ,
8595 :'is_oauth' => :'Boolean' ,
8696 :'metadata' => :'String' ,
97+ :'most_recent_job_detail_code' => :'String' ,
98+ :'most_recent_job_detail_text' => :'String' ,
8799 :'name' => :'String' ,
88100 :'oauth_window_uri' => :'String' ,
89101 :'successfully_aggregated_at' => :'String' ,
@@ -102,8 +114,11 @@ def self.openapi_nullable
102114 :'institution_code' ,
103115 :'is_being_aggregated' ,
104116 :'is_managed_by_user' ,
117+ :'is_manual' ,
105118 :'is_oauth' ,
106119 :'metadata' ,
120+ :'most_recent_job_detail_code' ,
121+ :'most_recent_job_detail_text' ,
107122 :'name' ,
108123 :'oauth_window_uri' ,
109124 :'successfully_aggregated_at' ,
@@ -159,6 +174,10 @@ def initialize(attributes = {})
159174 self . is_managed_by_user = attributes [ :'is_managed_by_user' ]
160175 end
161176
177+ if attributes . key? ( :'is_manual' )
178+ self . is_manual = attributes [ :'is_manual' ]
179+ end
180+
162181 if attributes . key? ( :'is_oauth' )
163182 self . is_oauth = attributes [ :'is_oauth' ]
164183 end
@@ -167,6 +186,14 @@ def initialize(attributes = {})
167186 self . metadata = attributes [ :'metadata' ]
168187 end
169188
189+ if attributes . key? ( :'most_recent_job_detail_code' )
190+ self . most_recent_job_detail_code = attributes [ :'most_recent_job_detail_code' ]
191+ end
192+
193+ if attributes . key? ( :'most_recent_job_detail_text' )
194+ self . most_recent_job_detail_text = attributes [ :'most_recent_job_detail_text' ]
195+ end
196+
170197 if attributes . key? ( :'name' )
171198 self . name = attributes [ :'name' ]
172199 end
@@ -216,8 +243,11 @@ def ==(o)
216243 institution_code == o . institution_code &&
217244 is_being_aggregated == o . is_being_aggregated &&
218245 is_managed_by_user == o . is_managed_by_user &&
246+ is_manual == o . is_manual &&
219247 is_oauth == o . is_oauth &&
220248 metadata == o . metadata &&
249+ most_recent_job_detail_code == o . most_recent_job_detail_code &&
250+ most_recent_job_detail_text == o . most_recent_job_detail_text &&
221251 name == o . name &&
222252 oauth_window_uri == o . oauth_window_uri &&
223253 successfully_aggregated_at == o . successfully_aggregated_at &&
@@ -234,7 +264,7 @@ def eql?(o)
234264 # Calculates hash code according to all attributes.
235265 # @return [Integer] Hash code
236266 def hash
237- [ aggregated_at , background_aggregation_is_disabled , connection_status , guid , id , institution_code , is_being_aggregated , is_managed_by_user , is_oauth , metadata , name , oauth_window_uri , successfully_aggregated_at , user_guid , user_id ] . hash
267+ [ aggregated_at , background_aggregation_is_disabled , connection_status , guid , id , institution_code , is_being_aggregated , is_managed_by_user , is_manual , is_oauth , metadata , most_recent_job_detail_code , most_recent_job_detail_text , name , oauth_window_uri , successfully_aggregated_at , user_guid , user_id ] . hash
238268 end
239269
240270 # Builds the object from hash
0 commit comments