aboutsummaryrefslogtreecommitdiff
path: root/src/schemas/message_schema.py
blob: 79c9659c78c40ab897341928128cff999c3a2bf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from pydantic import BaseModel


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