2019-03-29 21:12:30 +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)
|
2019-03-29 21:12:30 +01:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: updateChatPinnedMessage
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
A message was pinned in a [legacy group](https://core.telegram.org/api/channel)
|
2019-03-29 21:12:30 +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|
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [Update](../types/Update.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$updateChatPinnedMessage = ['_' => 'updateChatPinnedMessage', 'chat_id' => int, 'id' => int];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
updateChatPinnedMessage={_='updateChatPinnedMessage', chat_id=int, id=int}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|