Source code for kittycad.models.path_get_info

from typing import List

from ..models.path_segment_info import PathSegmentInfo
from .base import KittyCadBaseModel


[docs] class PathGetInfo(KittyCadBaseModel): """The response from the `PathGetInfo` command.""" segments: List[PathSegmentInfo]