* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
16 lines
345 B
Python
16 lines
345 B
Python
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
|
|
|
|
number_of_cad_users: Optional[str] = None
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|