Files
kittycad.py/kittycad/models/highlight_set_entity.py
Jess Frazelle ed36086040 working samples
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2023-11-29 10:32:31 -08:00

13 lines
235 B
Python

from typing import Optional
from pydantic import BaseModel
class HighlightSetEntity(BaseModel):
"""The response from the `HighlightSetEntity` command."""
entity_id: Optional[str] = None
sequence: Optional[int] = None