@@ -31,11 +31,12 @@ class MemberStatusResponse(BaseModel):
3131 connection_status : Optional [StrictStr ] = None
3232 guid : Optional [StrictStr ] = None
3333 has_processed_accounts : Optional [StrictBool ] = None
34+ has_processed_account_numbers : Optional [StrictBool ] = None
3435 has_processed_transactions : Optional [StrictBool ] = None
3536 is_authenticated : Optional [StrictBool ] = None
3637 is_being_aggregated : Optional [StrictBool ] = None
3738 successfully_aggregated_at : Optional [StrictStr ] = None
38- __properties = ["aggregated_at" , "challenges" , "connection_status" , "guid" , "has_processed_accounts" , "has_processed_transactions" , "is_authenticated" , "is_being_aggregated" , "successfully_aggregated_at" ]
39+ __properties = ["aggregated_at" , "challenges" , "connection_status" , "guid" , "has_processed_accounts" , "has_processed_account_numbers" , " has_processed_transactions" , "is_authenticated" , "is_being_aggregated" , "successfully_aggregated_at" ]
3940
4041 class Config :
4142 """Pydantic configuration"""
@@ -88,6 +89,11 @@ def to_dict(self):
8889 if self .has_processed_accounts is None and "has_processed_accounts" in self .__fields_set__ :
8990 _dict ['has_processed_accounts' ] = None
9091
92+ # set to None if has_processed_account_numbers (nullable) is None
93+ # and __fields_set__ contains the field
94+ if self .has_processed_account_numbers is None and "has_processed_account_numbers" in self .__fields_set__ :
95+ _dict ['has_processed_account_numbers' ] = None
96+
9197 # set to None if has_processed_transactions (nullable) is None
9298 # and __fields_set__ contains the field
9399 if self .has_processed_transactions is None and "has_processed_transactions" in self .__fields_set__ :
@@ -125,6 +131,7 @@ def from_dict(cls, obj: dict) -> MemberStatusResponse:
125131 "connection_status" : obj .get ("connection_status" ),
126132 "guid" : obj .get ("guid" ),
127133 "has_processed_accounts" : obj .get ("has_processed_accounts" ),
134+ "has_processed_account_numbers" : obj .get ("has_processed_account_numbers" ),
128135 "has_processed_transactions" : obj .get ("has_processed_transactions" ),
129136 "is_authenticated" : obj .get ("is_authenticated" ),
130137 "is_being_aggregated" : obj .get ("is_being_aggregated" ),
0 commit comments