from pydantic import BaseModel from ..models.point3d import Point3d [docs]class CurveGetEndPoints(BaseModel): """Endpoints of a curve""" end: Point3d start: Point3d