Source code for kittycad.models.make_offset_path
from typing import List
from pydantic import BaseModel, ConfigDict
[docs]
class MakeOffsetPath(BaseModel):
"""The response from the `MakeOffsetPath` command."""
entity_ids: List[str]
model_config = ConfigDict(protected_namespaces=())