Files
kittycad.py/kittycad/models/set_current_tool_properties.py

8 lines
213 B
Python
Raw Normal View History

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