@@ -77,11 +77,12 @@ class AccountResponse(BaseModel):
7777 today_ugl_amount : Optional [Union [StrictFloat , StrictInt ]] = None
7878 today_ugl_percentage : Optional [Union [StrictFloat , StrictInt ]] = None
7979 total_account_value : Optional [Union [StrictFloat , StrictInt ]] = None
80+ total_account_value_ugl : Optional [Union [StrictFloat , StrictInt ]] = None
8081 type : Optional [StrictStr ] = None
8182 updated_at : Optional [StrictStr ] = None
8283 user_guid : Optional [StrictStr ] = None
8384 user_id : Optional [StrictStr ] = None
84- __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" , "subtype" , "today_ugl_amount" , "today_ugl_percentage" , "total_account_value" , "type" , "updated_at" , "user_guid" , "user_id" ]
85+ __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" , "subtype" , "today_ugl_amount" , "today_ugl_percentage" , "total_account_value" , "total_account_value_ugl" , " type" , "updated_at" , "user_guid" , "user_id" ]
8586
8687 class Config :
8788 """Pydantic configuration"""
@@ -362,6 +363,11 @@ def to_dict(self):
362363 if self .total_account_value is None and "total_account_value" in self .__fields_set__ :
363364 _dict ['total_account_value' ] = None
364365
366+ # set to None if total_account_value_ugl (nullable) is None
367+ # and __fields_set__ contains the field
368+ if self .total_account_value_ugl is None and "total_account_value_ugl" in self .__fields_set__ :
369+ _dict ['total_account_value_ugl' ] = None
370+
365371 # set to None if type (nullable) is None
366372 # and __fields_set__ contains the field
367373 if self .type is None and "type" in self .__fields_set__ :
@@ -446,6 +452,7 @@ def from_dict(cls, obj: dict) -> AccountResponse:
446452 "today_ugl_amount" : obj .get ("today_ugl_amount" ),
447453 "today_ugl_percentage" : obj .get ("today_ugl_percentage" ),
448454 "total_account_value" : obj .get ("total_account_value" ),
455+ "total_account_value_ugl" : obj .get ("total_account_value_ugl" ),
449456 "type" : obj .get ("type" ),
450457 "updated_at" : obj .get ("updated_at" ),
451458 "user_guid" : obj .get ("user_guid" ),
0 commit comments