41 lines
975 B
Markdown
41 lines
975 B
Markdown
---
|
|
title: updateDialogPinned
|
|
description: A dialog was pinned/unpinned
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: updateDialogPinned
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
A dialog was pinned/unpinned
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|pinned|[Bool](../types/Bool.md) | Optional|Whether the dialog was pinned|
|
|
|folder\_id|[int](../types/int.md) | Optional|[Peer folder ID, for more info click here](https://core.telegram.org/api/folders#peer-folders)|
|
|
|peer|[DialogPeer](../types/DialogPeer.md) | Yes|The dialog|
|
|
|
|
|
|
|
|
### Type: [Update](../types/Update.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```php
|
|
$updateDialogPinned = ['_' => 'updateDialogPinned', 'pinned' => Bool, 'folder_id' => int, 'peer' => DialogPeer];
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
```lua
|
|
updateDialogPinned={_='updateDialogPinned', pinned=Bool, folder_id=int, peer=DialogPeer}
|
|
|
|
```
|
|
|
|
|