2019-08-15 20:25:16 +02:00
|
|
|
---
|
|
|
|
title: updateDialogPinned
|
2019-12-27 17:48:04 +01:00
|
|
|
description: A dialog was pinned/unpinned
|
2019-08-15 20:25:16 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: updateDialogPinned
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
A dialog was pinned/unpinned
|
2019-08-15 20:25:16 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|pinned|[Bool](../types/Bool.md) | Optional|Whether the dialog was pinned|
|
|
|
|
|folder\_id|[int](../types/int.md) | Optional|If the dialog is in a folder, the folder ID|
|
|
|
|
|peer|[DialogPeer](../types/DialogPeer.md) | Yes|The dialog|
|
2019-08-15 20:25:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### 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}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|