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

12 lines
205 B
Python

from typing import TypedDict
class Response(TypedDict):
success: bool
status: int
class UploadResponseData(TypedDict):
error: str
link: str
class UploadResponse(Response):
data: UploadResponseData