2024-07-28 15:21:51 -07:00
|
|
|
from typing import Optional
|
2024-01-16 15:04:35 -08:00
|
|
|
|
2024-07-28 15:21:51 -07:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2024-01-16 15:04:35 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class OrgDetails(BaseModel):
|
|
|
|
"""The user-modifiable parts of an organization."""
|
|
|
|
|
|
|
|
allow_users_in_domain_to_auto_join: Optional[bool] = None
|
|
|
|
|
|
|
|
billing_email: Optional[str] = None
|
|
|
|
|
|
|
|
domain: Optional[str] = None
|
|
|
|
|
|
|
|
image: Optional[str] = None
|
|
|
|
|
|
|
|
name: Optional[str] = None
|
|
|
|
|
2024-08-20 13:10:56 -04:00
|
|
|
phone: str = ""
|
2024-01-16 15:04:35 -08:00
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|