inbox/validators/chat.py

10 lines
186 B
Python
Raw Normal View History

2023-10-13 16:45:30 +00:00
from typing import Dict, Optional
class Message(Dict):
chat: str
id: int
author: int
body: str
createdAt: int
replyTo: Optional[int]
updatedAt: Optional[int]