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]