2023-11-28 23:50:50 -08:00
|
|
|
from typing import Optional
|
|
|
|
from uuid import UUID
|
2023-08-17 12:48:13 -07:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
from pydantic import BaseModel
|
2023-08-17 12:48:13 -07:00
|
|
|
|
|
|
|
|
2023-11-29 00:39:14 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
class HighlightSetEntity(BaseModel):
|
|
|
|
"""The response from the `HighlightSetEntity` command."""
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
entity_id: Optional[UUID] = None
|
2023-08-17 12:48:13 -07:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
sequence: Optional[int] = None
|