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