1515
1616module MxPlatformRuby
1717 class MemberResponse
18+ attr_accessor :actionable_error
19+
1820 attr_accessor :aggregated_at
1921
2022 attr_accessor :background_aggregation_is_disabled
@@ -56,6 +58,7 @@ class MemberResponse
5658 # Attribute mapping from ruby-style variable name to JSON key.
5759 def self . attribute_map
5860 {
61+ :'actionable_error' => :'actionable_error' ,
5962 :'aggregated_at' => :'aggregated_at' ,
6063 :'background_aggregation_is_disabled' => :'background_aggregation_is_disabled' ,
6164 :'connection_status' => :'connection_status' ,
@@ -86,6 +89,7 @@ def self.acceptable_attributes
8689 # Attribute type mapping.
8790 def self . openapi_types
8891 {
92+ :'actionable_error' => :'String' ,
8993 :'aggregated_at' => :'String' ,
9094 :'background_aggregation_is_disabled' => :'Boolean' ,
9195 :'connection_status' => :'String' ,
@@ -111,6 +115,7 @@ def self.openapi_types
111115 # List of attributes with nullable: true
112116 def self . openapi_nullable
113117 Set . new ( [
118+ :'actionable_error' ,
114119 :'aggregated_at' ,
115120 :'connection_status' ,
116121 :'guid' ,
@@ -147,6 +152,10 @@ def initialize(attributes = {})
147152 h [ k . to_sym ] = v
148153 }
149154
155+ if attributes . key? ( :'actionable_error' )
156+ self . actionable_error = attributes [ :'actionable_error' ]
157+ end
158+
150159 if attributes . key? ( :'aggregated_at' )
151160 self . aggregated_at = attributes [ :'aggregated_at' ]
152161 end
@@ -246,6 +255,7 @@ def valid?
246255 def ==( o )
247256 return true if self . equal? ( o )
248257 self . class == o . class &&
258+ actionable_error == o . actionable_error &&
249259 aggregated_at == o . aggregated_at &&
250260 background_aggregation_is_disabled == o . background_aggregation_is_disabled &&
251261 connection_status == o . connection_status &&
@@ -276,7 +286,7 @@ def eql?(o)
276286 # Calculates hash code according to all attributes.
277287 # @return [Integer] Hash code
278288 def 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
289+ [ actionable_error , 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
280290 end
281291
282292 # Builds the object from hash
0 commit comments