Source code for kittycad.models.loft

from pydantic import BaseModel, ConfigDict


[docs] class Loft(BaseModel): """The response from the `Loft` command.""" solid_id: str model_config = ConfigDict(protected_namespaces=())