discord-rich-presence-plex/models/plex.py
2022-05-14 15:13:02 +05:30

11 lines
219 B
Python

from typing import TypedDict
class StateNotification(TypedDict):
state: str
sessionKey: int
ratingKey: int
viewOffset: int
class Alert(TypedDict):
type: str
PlaySessionStateNotification: list[StateNotification]