inbox/models/message.py

13 lines
228 B
Python
Raw Normal View History

2023-10-14 14:55:51 +00:00
from typing import TypedDict, Optional
class Message(TypedDict):
id: int
2023-11-16 15:28:16 +00:00
chat_id: str
2023-11-17 09:10:36 +00:00
created_by: int
2023-10-14 14:55:51 +00:00
body: str
2023-11-16 14:58:14 +00:00
created_at: int
reply_to: Optional[int]
created_at: int
updated_at: Optional[int]