2025-05-11 11:51:16 -07:00
|
|
|
from typing import Optional
|
|
|
|
|
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
|
|
|
|
|
|
class CrmData(BaseModel):
|
|
|
|
"""The data for subscribing a user to the newsletter."""
|
|
|
|
|
|
|
|
cad_industry: Optional[str] = None
|
|
|
|
|
|
|
|
cad_user_type: Optional[str] = None
|
|
|
|
|
2025-05-15 09:07:45 -07:00
|
|
|
number_of_cad_users: Optional[str] = None
|
|
|
|
|
2025-05-11 11:51:16 -07:00
|
|
|
model_config = ConfigDict(protected_namespaces=())
|