MadelineProtoDocs/old_docs/API_docs_v103/constructors/updateChannelPinnedMessage.md
2019-08-15 20:25:16 +02:00

40 lines
791 B
Markdown

---
title: updateChannelPinnedMessage
description: Update channel pinned message
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updateChannelPinnedMessage
[Back to constructors index](index.md)
Update channel pinned message
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|channel\_id|[int](../types/int.md) | Yes|Channel ID|
|id|[int](../types/int.md) | Yes|ID|
### Type: [Update](../types/Update.md)
### Example:
```php
$updateChannelPinnedMessage = ['_' => 'updateChannelPinnedMessage', 'channel_id' => int, 'id' => int];
```
Or, if you're into Lua:
```lua
updateChannelPinnedMessage={_='updateChannelPinnedMessage', channel_id=int, id=int}
```