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