Source code for kittycad.models.highlight_set_entity

from typing import Optional

from .base import KittyCadBaseModel


[docs] class HighlightSetEntity(KittyCadBaseModel): """The response from the `HighlightSetEntity` command.""" entity_id: Optional[str] = None sequence: Optional[int] = None