Source code for kittycad.models.move_path_pen
from pydantic import BaseModel, ConfigDict
[docs]
class MovePathPen(BaseModel):
"""The response from the `MovePathPen` endpoint."""
model_config = ConfigDict(protected_namespaces=())
from pydantic import BaseModel, ConfigDict
[docs]
class MovePathPen(BaseModel):
"""The response from the `MovePathPen` endpoint."""
model_config = ConfigDict(protected_namespaces=())