Files
kittycad.py/kittycad/models/highlight_set_entity.py

13 lines
235 B
Python
Raw Normal View History

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