from typing import Optional, TypedDict class Message(TypedDict): id: int chat_id: str created_by: int body: str created_at: int reply_to: Optional[int] created_at: int updated_at: Optional[int]