mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING, Any, Dict, Optional, Union
|
|
|
|
from ..types import Message
|
|
from .base import Request, TelegramMethod
|
|
|
|
if TYPE_CHECKING:
|
|
from ..client.bot import Bot
|
|
|
|
|
|
class ForwardMessage(TelegramMethod[Message]):
|
|
"""
|
|
Use this method to forward messages of any kind. On success, the sent Message is returned.
|
|
|
|
Source: https://core.telegram.org/bots/api#forwardmessage
|
|
"""
|
|
|
|
__returning__ = Message
|
|
|
|
chat_id: Union[int, str]
|
|
"""Unique identifier for the target chat or username of the target channel (in the format
|
|
@channelusername)"""
|
|
from_chat_id: Union[int, str]
|
|
"""Unique identifier for the chat where the original message was sent (or channel username in
|
|
the format @channelusername)"""
|
|
message_id: int
|
|
"""Message identifier in the chat specified in from_chat_id"""
|
|
disable_notification: Optional[bool] = None
|
|
"""Sends the message silently. Users will receive a notification with no sound."""
|
|
|
|
def build_request(self, bot: Bot) -> Request:
|
|
data: Dict[str, Any] = self.dict()
|
|
|
|
return Request(method="forwardMessage", data=data)
|