MadelineProtoDocs/docs/API_docs/constructors/updateChatPinnedMessage.md

42 lines
1.1 KiB
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
title: updateChatPinnedMessage
2019-12-27 17:48:04 +01:00
description: A message was pinned in a [legacy group](https://core.telegram.org/api/channel)
2018-12-26 02:56:50 +01:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updateChatPinnedMessage
[Back to constructors index](index.md)
2020-08-20 00:17:04 +02:00
A message was pinned in a [legacy group](https://core.telegram.org/api/channel)
2020-10-01 10:17:22 +02:00
This update is also typically emitted as an [updateNewMessage](updateNewMessage.md) with [messageService](messageService.md).
2018-12-26 02:56:50 +01:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|chat\_id|[int](../types/int.md) | Yes|[Legacy group](https://core.telegram.org/api/channel) ID|
|id|[int](../types/int.md) | Yes|ID of pinned message|
|version|[int](../types/int.md) | Yes|Used to reorder updates in legacy groups|
2018-12-26 02:56:50 +01:00
### Type: [Update](../types/Update.md)
### Example:
```php
2019-03-29 21:12:30 +01:00
$updateChatPinnedMessage = ['_' => 'updateChatPinnedMessage', 'chat_id' => int, 'id' => int, 'version' => int];
2018-12-26 02:56:50 +01:00
```
Or, if you're into Lua:
```lua
2019-03-29 21:12:30 +01:00
updateChatPinnedMessage={_='updateChatPinnedMessage', chat_id=int, id=int, version=int}
2018-12-26 02:56:50 +01:00
```