MadelineProtoDocs/old_docs/API_docs_v89/constructors/updateUserPinnedMessage.md

40 lines
848 B
Markdown
Raw Permalink Normal View History

2018-12-26 02:56:50 +01:00
---
title: updateUserPinnedMessage
2019-12-27 17:48:04 +01:00
description: A message was pinned in a private chat with a user
2018-12-26 02:56:50 +01:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updateUserPinnedMessage
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
A message was pinned in a private chat with a user
2018-12-26 02:56:50 +01:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|user\_id|[int](../types/int.md) | Yes|User that pinned the message|
|id|[int](../types/int.md) | Yes|Message ID that was pinned|
2018-12-26 02:56:50 +01:00
### Type: [Update](../types/Update.md)
### Example:
```php
$updateUserPinnedMessage = ['_' => 'updateUserPinnedMessage', 'user_id' => int, 'id' => int];
```
Or, if you're into Lua:
```lua
updateUserPinnedMessage={_='updateUserPinnedMessage', user_id=int, id=int}
```