from pydantic import BaseModel class Message(BaseModel): timestamp: str author_id: int channel_id: int stickers: list[str] role_mentions: list[int] mention_everyone: bool mentions: list[int] attachments: list[str] content: str