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