MadelineProtoDocs/docs/API_docs/constructors/inputPeerChannelFromMessage.md

1.2 KiB

title description image
inputPeerChannelFromMessage Defines a [min](https://core.telegram.org/api/min) channel that was seen in a certain message of a certain chat. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputPeerChannelFromMessage

Back to constructors index

Defines a min channel that was seen in a certain message of a certain chat.

Attributes:

Name Type Required Description
peer Username, chat ID, Update, Message or InputPeer Optional The chat where the channel's message was seen
msg_id int Yes The message ID
channel_id int Yes The identifier of the channel that was seen

Type: InputPeer

Example:

$inputPeerChannelFromMessage = ['_' => 'inputPeerChannelFromMessage', 'peer' => InputPeer, 'msg_id' => int, 'channel_id' => int];

Or, if you're into Lua:

inputPeerChannelFromMessage={_='inputPeerChannelFromMessage', peer=InputPeer, msg_id=int, channel_id=int}