Files
kittycad.py/kittycad/models/entity_make_helix_from_params.py

10 lines
234 B
Python
Raw Normal View History

from pydantic import BaseModel, ConfigDict
class EntityMakeHelixFromParams(BaseModel):
"""The response from the `EntityMakeHelixFromParams` endpoint."""
helix_id: str
model_config = ConfigDict(protected_namespaces=())