Чаты¶
GetChat¶
GET /chats/{chat_id} → Chat
GetChats¶
GET /chats → list[Chat]
GetChatByLink¶
GET /chats/{chat_link} → Chat
EditChat¶
PATCH /chats/{chat_id} → Chat
class EditChat(MaxMethod[Chat]):
chat_id: int
icon: dict[str, Any] | None = None
title: str | None = None
pin: str | None = None
notify: bool | None = None
DeleteChat¶
DELETE /chats/{chat_id} → bool
Исходные файлы¶
maxgram/methods/get_chat.pymaxgram/methods/get_chat_by_link.pymaxgram/methods/get_chats.pymaxgram/methods/edit_chat.pymaxgram/methods/delete_chat.py