@@ -49,6 +49,8 @@ class AccountResponse
4949
5050 attr_accessor :death_benefit
5151
52+ attr_accessor :federal_insurance_status
53+
5254 attr_accessor :guid
5355
5456 attr_accessor :holdings_value
@@ -151,6 +153,7 @@ def self.attribute_map
151153 :'currency_code' => :'currency_code' ,
152154 :'day_payment_is_due' => :'day_payment_is_due' ,
153155 :'death_benefit' => :'death_benefit' ,
156+ :'federal_insurance_status' => :'federal_insurance_status' ,
154157 :'guid' => :'guid' ,
155158 :'holdings_value' => :'holdings_value' ,
156159 :'id' => :'id' ,
@@ -220,6 +223,7 @@ def self.openapi_types
220223 :'currency_code' => :'String' ,
221224 :'day_payment_is_due' => :'Integer' ,
222225 :'death_benefit' => :'Integer' ,
226+ :'federal_insurance_status' => :'String' ,
223227 :'guid' => :'String' ,
224228 :'holdings_value' => :'Float' ,
225229 :'id' => :'String' ,
@@ -283,6 +287,7 @@ def self.openapi_nullable
283287 :'currency_code' ,
284288 :'day_payment_is_due' ,
285289 :'death_benefit' ,
290+ :'federal_insurance_status' ,
286291 :'guid' ,
287292 :'holdings_value' ,
288293 :'id' ,
@@ -410,6 +415,10 @@ def initialize(attributes = {})
410415 self . death_benefit = attributes [ :'death_benefit' ]
411416 end
412417
418+ if attributes . key? ( :'federal_insurance_status' )
419+ self . federal_insurance_status = attributes [ :'federal_insurance_status' ]
420+ end
421+
413422 if attributes . key? ( :'guid' )
414423 self . guid = attributes [ :'guid' ]
415424 end
@@ -612,6 +621,7 @@ def ==(o)
612621 currency_code == o . currency_code &&
613622 day_payment_is_due == o . day_payment_is_due &&
614623 death_benefit == o . death_benefit &&
624+ federal_insurance_status == o . federal_insurance_status &&
615625 guid == o . guid &&
616626 holdings_value == o . holdings_value &&
617627 id == o . id &&
@@ -664,7 +674,7 @@ def eql?(o)
664674 # Calculates hash code according to all attributes.
665675 # @return [Integer] Hash code
666676 def hash
667- [ account_number , account_ownership , annuity_policy_to_date , annuity_provider , annuity_term_year , apr , apy , available_balance , available_credit , balance , cash_balance , cash_surrender_value , created_at , credit_limit , currency_code , day_payment_is_due , death_benefit , guid , holdings_value , id , imported_at , institution_code , insured_name , interest_rate , is_closed , is_hidden , is_manual , last_payment , last_payment_at , loan_amount , margin_balance , matures_on , member_guid , member_id , member_is_managed_by_user , metadata , minimum_balance , minimum_payment , name , nickname , original_balance , pay_out_amount , payment_due_at , payoff_balance , premium_amount , property_type , routing_number , started_on , statement_balance , subtype , today_ugl_amount , today_ugl_percentage , total_account_value , total_account_value_ugl , type , updated_at , user_guid , user_id ] . hash
677+ [ account_number , account_ownership , annuity_policy_to_date , annuity_provider , annuity_term_year , apr , apy , available_balance , available_credit , balance , cash_balance , cash_surrender_value , created_at , credit_limit , currency_code , day_payment_is_due , death_benefit , federal_insurance_status , guid , holdings_value , id , imported_at , institution_code , insured_name , interest_rate , is_closed , is_hidden , is_manual , last_payment , last_payment_at , loan_amount , margin_balance , matures_on , member_guid , member_id , member_is_managed_by_user , metadata , minimum_balance , minimum_payment , name , nickname , original_balance , pay_out_amount , payment_due_at , payoff_balance , premium_amount , property_type , routing_number , started_on , statement_balance , subtype , today_ugl_amount , today_ugl_percentage , total_account_value , total_account_value_ugl , type , updated_at , user_guid , user_id ] . hash
668678 end
669679
670680 # Builds the object from hash
0 commit comments