Source code for kittycad.models.entity_make_helix_from_params

from pydantic import BaseModel, ConfigDict


[docs] class EntityMakeHelixFromParams(BaseModel): """The response from the `EntityMakeHelixFromParams` endpoint.""" helix_id: str model_config = ConfigDict(protected_namespaces=())