@@ -42,6 +42,7 @@ class AccountResponse(BaseModel):
4242 currency_code : Optional [StrictStr ] = None
4343 day_payment_is_due : Optional [StrictInt ] = None
4444 death_benefit : Optional [StrictInt ] = None
45+ federal_insurance_status : Optional [StrictStr ] = None
4546 guid : Optional [StrictStr ] = None
4647 holdings_value : Optional [Union [StrictFloat , StrictInt ]] = None
4748 id : Optional [StrictStr ] = None
@@ -83,7 +84,7 @@ class AccountResponse(BaseModel):
8384 updated_at : Optional [StrictStr ] = None
8485 user_guid : Optional [StrictStr ] = None
8586 user_id : Optional [StrictStr ] = None
86- __properties = ["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" ]
87+ __properties = ["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" ]
8788
8889 class Config :
8990 """Pydantic configuration"""
@@ -189,6 +190,11 @@ def to_dict(self):
189190 if self .death_benefit is None and "death_benefit" in self .__fields_set__ :
190191 _dict ['death_benefit' ] = None
191192
193+ # set to None if federal_insurance_status (nullable) is None
194+ # and __fields_set__ contains the field
195+ if self .federal_insurance_status is None and "federal_insurance_status" in self .__fields_set__ :
196+ _dict ['federal_insurance_status' ] = None
197+
192198 # set to None if guid (nullable) is None
193199 # and __fields_set__ contains the field
194200 if self .guid is None and "guid" in self .__fields_set__ :
@@ -423,6 +429,7 @@ def from_dict(cls, obj: dict) -> AccountResponse:
423429 "currency_code" : obj .get ("currency_code" ),
424430 "day_payment_is_due" : obj .get ("day_payment_is_due" ),
425431 "death_benefit" : obj .get ("death_benefit" ),
432+ "federal_insurance_status" : obj .get ("federal_insurance_status" ),
426433 "guid" : obj .get ("guid" ),
427434 "holdings_value" : obj .get ("holdings_value" ),
428435 "id" : obj .get ("id" ),
0 commit comments