2023-10-17 15:35:56 -07:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
from pydantic import BaseModel
|
2023-10-17 15:35:56 -07:00
|
|
|
|
|
|
|
from ..models.modeling_cmd import ModelingCmd
|
|
|
|
from ..models.modeling_cmd_id import ModelingCmdId
|
|
|
|
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
class ModelingCmdReq(BaseModel):
|
|
|
|
"""A graphics command submitted to the KittyCAD engine via the Modeling API."""
|
2023-10-17 15:35:56 -07:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
cmd: ModelingCmd
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
cmd_id: ModelingCmdId
|