Source code for kittycad.models.create_planar_surface
from typing import List
from .base import KittyCadBaseModel
[docs]
class CreatePlanarSurface(KittyCadBaseModel):
"""The response from the 'CreatePlanarSurface'."""
surfaces: List[str]