Source code for kittycad.models.modeling_cmd_req
from ..models.modeling_cmd import ModelingCmd
from ..models.modeling_cmd_id import ModelingCmdId
from .base import KittyCadBaseModel
[docs]
class ModelingCmdReq(KittyCadBaseModel):
"""A graphics command submitted to the KittyCAD engine via the Modeling API."""
cmd: ModelingCmd
cmd_id: ModelingCmdId