inbox/validators/message.py
Untone 4530b2a1e9
All checks were successful
deploy / deploy (push) Successful in 1m14s
model-fix
2023-11-17 12:10:36 +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]