inbox/models/message.py
Untone 856a331836
Some checks failed
deploy / deploy (push) Failing after 1m12s
some-fixes
2023-11-22 15:09:24 +03:00

13 lines
228 B
Python

from typing import TypedDict, Optional
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]