Update api spec (#435)
* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
1744ab6385
commit
24e80f4568
15
kittycad/models/crm_data.py
Normal file
15
kittycad/models/crm_data.py
Normal file
@ -0,0 +1,15 @@
|
||||
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_count: Optional[str] = None
|
||||
|
||||
cad_user_type: Optional[str] = None
|
||||
|
||||
model_config = ConfigDict(protected_namespaces=())
|
Reference in New Issue
Block a user