MadelineProtoDocs/docs/API_docs/constructors/updateChatPinnedMessage.md

40 lines
755 B
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
title: updateChatPinnedMessage
description: Update chat pinned message
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updateChatPinnedMessage
[Back to constructors index](index.md)
Update chat pinned message
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|chat\_id|[int](../types/int.md) | Yes|Chat ID|
|id|[int](../types/int.md) | Yes|ID|
### 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}
```