discord-rich-presence-plex/models/plex.py

12 lines
219 B
Python
Raw Normal View History

2022-05-14 09:43:02 +00:00
from typing import TypedDict
class StateNotification(TypedDict):
state: str
sessionKey: int
ratingKey: int
viewOffset: int
class Alert(TypedDict):
type: str
PlaySessionStateNotification: list[StateNotification]