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