inbox/validators/message.py

13 lines
221 B
Python
Raw Normal View History

2023-10-14 14:55:51 +00:00
from typing import TypedDict, Optional
class Message(TypedDict):
id: int
chat: str
author: int
body: str
2023-11-16 14:58:14 +00:00
created_at: int
reply_to: Optional[int]
created_at: int
updated_at: Optional[int]