MadelineProtoDocs/old_docs/API_docs_v14/constructors/updateChannelPinnedMessage.md

1.2 KiB

title description image
updateChannelPinnedMessage A message was pinned in a [channel/supergroup](https://core.telegram.org/api/channel). This update is also typically emitted as an [updateNewChannelMessage](updateNewChannelMessage.md) with [messageService](messageService.md). https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateChannelPinnedMessage

Back to constructors index

A message was pinned in a channel/supergroup. This update is also typically emitted as an updateNewChannelMessage with messageService.

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}