inbox/validators/message.py
Untone c22b560bcf
All checks were successful
deploy / deploy (push) Successful in 1m17s
snake-case
2023-11-16 17:58:14 +03:00

13 lines
221 B
Python

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