--- title: channelAdminLogEventActionUpdatePinned description: channelAdminLogEventActionUpdatePinned attributes, type and example image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: channelAdminLogEventActionUpdatePinned [Back to constructors index](index.md) ### Attributes: | Name | Type | Required | |----------|---------------|----------| |message|[Message](../types/Message.md) | Optional| ### Type: [ChannelAdminLogEventAction](../types/ChannelAdminLogEventAction.md) ### Example: ``` $channelAdminLogEventActionUpdatePinned = ['_' => 'channelAdminLogEventActionUpdatePinned', 'message' => Message]; ``` [PWRTelegram](https://pwrtelegram.xyz) json-encoded version: ``` {"_": "channelAdminLogEventActionUpdatePinned", "message": Message} ``` Or, if you're into Lua: ``` channelAdminLogEventActionUpdatePinned={_='channelAdminLogEventActionUpdatePinned', message=Message} ```