@@ -32,7 +32,10 @@ class OpenExchangeCreateAccount(BaseModel):
3232 domain_name : Annotated [str , Field (min_length = 1 , strict = True , max_length = 255 )]
3333 subscription : Annotated [int , Field (strict = True , ge = 0 )]
3434 new_subscription : StrictBool
35- __properties : ClassVar [List [str ]] = ["emails" , "domain_name" , "subscription" , "new_subscription" ]
35+ display_name : Annotated [str , Field (min_length = 1 , strict = True )]
36+ user_password : Annotated [str , Field (min_length = 1 , strict = True )]
37+ email_quota : Annotated [int , Field (strict = True , ge = 0 )]
38+ __properties : ClassVar [List [str ]] = ["emails" , "domain_name" , "subscription" , "new_subscription" , "display_name" , "user_password" , "email_quota" ]
3639
3740 model_config = ConfigDict (
3841 populate_by_name = True ,
@@ -88,7 +91,10 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
8891 "emails" : obj .get ("emails" ),
8992 "domain_name" : obj .get ("domain_name" ),
9093 "subscription" : obj .get ("subscription" ),
91- "new_subscription" : obj .get ("new_subscription" )
94+ "new_subscription" : obj .get ("new_subscription" ),
95+ "display_name" : obj .get ("display_name" ),
96+ "user_password" : obj .get ("user_password" ),
97+ "email_quota" : obj .get ("email_quota" )
9298 })
9399 return _obj
94100
0 commit comments