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

33 lines
568 B
Python

from typing import TypedDict
class Logging(TypedDict):
debug: bool
writeToFile: bool
class Posters(TypedDict):
enabled: bool
imgurClientID: str
class Button(TypedDict):
label: str
url: str
class Display(TypedDict):
useRemainingTime: bool
posters: Posters
buttons: list[Button]
class Server(TypedDict, total = False):
name: str
listenForUser: str
blacklistedLibraries: list[str]
whitelistedLibraries: list[str]
class User(TypedDict):
token: str
servers: list[Server]
class Config(TypedDict):
logging: Logging
display: Display
users: list[User]