Files
kittycad.py/kittycad/models/object_bring_to_front.py

8 lines
201 B
Python
Raw Normal View History

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