inbox/validators/message.py
2023-10-14 17:55:51 +03:00

13 lines
217 B
Python

from typing import TypedDict, Optional
class Message(TypedDict):
id: int
chat: str
author: int
body: str
createdAt: int
replyTo: Optional[int]
createdAt: int
updatedAt: Optional[int]