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

15 lines
303 B
Python

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