Files
kittycad.py/kittycad/models/make_offset_path.py
zoo-github-actions-auth[bot] 6e3604f4aa Update api spec (#323)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-11-20 11:09:55 -08:00

12 lines
244 B
Python

from typing import List
from pydantic import BaseModel, ConfigDict
class MakeOffsetPath(BaseModel):
"""The response from the `MakeOffsetPath` command."""
entity_ids: List[str]
model_config = ConfigDict(protected_namespaces=())