Files
kittycad.py/kittycad/models/modeling_cmd_req.py
Jess Frazelle 8d476bbec6 pydantic cleanup
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2024-01-06 18:32:34 -08:00

16 lines
366 B
Python

from pydantic import BaseModel, ConfigDict
from ..models.modeling_cmd import ModelingCmd
from ..models.modeling_cmd_id import ModelingCmdId
class ModelingCmdReq(BaseModel):
"""A graphics command submitted to the KittyCAD engine via the Modeling API."""
cmd: ModelingCmd
cmd_id: ModelingCmdId
model_config = ConfigDict(protected_namespaces=())