working samples

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-11-29 10:32:31 -08:00
parent 9f8069decb
commit ed36086040
37 changed files with 962 additions and 856 deletions

View File

@ -1,5 +1,4 @@
from typing import Optional
from uuid import UUID
from pydantic import BaseModel
@ -8,6 +7,6 @@ from pydantic import BaseModel
class HighlightSetEntity(BaseModel):
"""The response from the `HighlightSetEntity` command."""
entity_id: Optional[UUID] = None
entity_id: Optional[str] = None
sequence: Optional[int] = None