mirror of
https://github.com/phin05/discord-rich-presence-plex
synced 2024-11-22 01:23:02 +00:00
11 lines
219 B
Python
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]
|