MadelineProtoDocs/docs/API_docs/constructors/updateChannelPinnedMessage.md

1.1 KiB

title description image
updateChannelPinnedMessage A message was pinned in a [channel/supergroup](https://core.telegram.org/api/channel). https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateChannelPinnedMessage

Back to constructors index

A message was pinned in a channel/supergroup.
N.B.: This Update isn't relative to the service message generated by the pin event; for that see this update with this message.

Attributes:

Name Type Required Description
channel_id int Yes Channel/supergroup ID
id int Yes ID of pinned message

Type: Update

Example:

$updateChannelPinnedMessage = ['_' => 'updateChannelPinnedMessage', 'channel_id' => int, 'id' => int];

Or, if you're into Lua:

updateChannelPinnedMessage={_='updateChannelPinnedMessage', channel_id=int, id=int}