@@ -47,6 +47,8 @@ class MemberResponse
4747
4848 attr_accessor :successfully_aggregated_at
4949
50+ attr_accessor :use_cases
51+
5052 attr_accessor :user_guid
5153
5254 attr_accessor :user_id
@@ -70,6 +72,7 @@ def self.attribute_map
7072 :'name' => :'name' ,
7173 :'oauth_window_uri' => :'oauth_window_uri' ,
7274 :'successfully_aggregated_at' => :'successfully_aggregated_at' ,
75+ :'use_cases' => :'use_cases' ,
7376 :'user_guid' => :'user_guid' ,
7477 :'user_id' => :'user_id'
7578 }
@@ -99,6 +102,7 @@ def self.openapi_types
99102 :'name' => :'String' ,
100103 :'oauth_window_uri' => :'String' ,
101104 :'successfully_aggregated_at' => :'String' ,
105+ :'use_cases' => :'Array<String>' ,
102106 :'user_guid' => :'String' ,
103107 :'user_id' => :'String'
104108 }
@@ -122,6 +126,7 @@ def self.openapi_nullable
122126 :'name' ,
123127 :'oauth_window_uri' ,
124128 :'successfully_aggregated_at' ,
129+ :'use_cases' ,
125130 :'user_guid' ,
126131 :'user_id'
127132 ] )
@@ -206,6 +211,12 @@ def initialize(attributes = {})
206211 self . successfully_aggregated_at = attributes [ :'successfully_aggregated_at' ]
207212 end
208213
214+ if attributes . key? ( :'use_cases' )
215+ if ( value = attributes [ :'use_cases' ] ) . is_a? ( Array )
216+ self . use_cases = value
217+ end
218+ end
219+
209220 if attributes . key? ( :'user_guid' )
210221 self . user_guid = attributes [ :'user_guid' ]
211222 end
@@ -251,6 +262,7 @@ def ==(o)
251262 name == o . name &&
252263 oauth_window_uri == o . oauth_window_uri &&
253264 successfully_aggregated_at == o . successfully_aggregated_at &&
265+ use_cases == o . use_cases &&
254266 user_guid == o . user_guid &&
255267 user_id == o . user_id
256268 end
@@ -264,7 +276,7 @@ def eql?(o)
264276 # Calculates hash code according to all attributes.
265277 # @return [Integer] Hash code
266278 def 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
279+ [ 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 , use_cases , user_guid , user_id ] . hash
268280 end
269281
270282 # Builds the object from hash
0 commit comments