inbox/models/message.py
Untone 517de93ccd
All checks were successful
deploy / deploy (push) Successful in 1m11s
sorted
2023-12-17 20:13:17 +03:00

13 lines
228 B
Python

from typing import Optional, TypedDict
class Message(TypedDict):
id: int
chat_id: str
created_by: int
body: str
created_at: int
reply_to: Optional[int]
created_at: int
updated_at: Optional[int]