Files
kittycad.py/kittycad/models/crm_data.py
zoo-github-actions-auth[bot] ed50b95b1e Update api spec (#438)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-05-15 09:07:45 -07:00

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=())