mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-13 15:47:20 +01:00
36 lines
746 B
Markdown
36 lines
746 B
Markdown
|
---
|
||
|
title: channelAdminLogEventActionUpdatePinned
|
||
|
description: channelAdminLogEventActionUpdatePinned attributes, type and example
|
||
|
---
|
||
|
## Constructor: channelAdminLogEventActionUpdatePinned
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|message|[Message](../types/Message.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [ChannelAdminLogEventAction](../types/ChannelAdminLogEventAction.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$channelAdminLogEventActionUpdatePinned = ['_' => 'channelAdminLogEventActionUpdatePinned', 'message' => Message, ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
channelAdminLogEventActionUpdatePinned={_='channelAdminLogEventActionUpdatePinned', message=Message, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|