aboutsummaryrefslogtreecommitdiff
path: root/src/schemas/message_schema.py
blob: 1738f3b1ba0fa3795054ff910dc035cc7c029aab (plain)
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