inbox/validators/message.py

13 lines
217 B
Python
Raw Normal View History

2023-10-14 14:55:51 +00:00
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]