Files
kittycad.py/kittycad/models/default_camera_perspective_settings.py

8 lines
229 B
Python
Raw Normal View History

from pydantic import BaseModel, ConfigDict
class DefaultCameraPerspectiveSettings(BaseModel):
"""The response from the `DefaultCameraPerspectiveSettings` endpoint."""
model_config = ConfigDict(protected_namespaces=())