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

13 lines
205 B
Python
Raw Normal View History

from typing import TypedDict
2022-05-14 09:43:02 +00:00
class Response(TypedDict):
success: bool
status: int
2022-05-14 09:43:02 +00:00
class UploadResponseData(TypedDict):
error: str
link: str
2022-05-14 09:43:02 +00:00
class UploadResponse(Response):
data: UploadResponseData