2023-12-17 17:13:17 +00:00
|
|
|
from typing import Optional, TypedDict
|
2023-10-14 14:55:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
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]
|