1 2 3 4 5 6 7 8 9 10 11 12 13
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