MadelineProtoDocs/old_docs/API_docs_v105/constructors/channelAdminLogEventActionDeleteMessage.md
2019-09-13 17:13:55 +02:00

39 lines
829 B
Markdown

---
title: channelAdminLogEventActionDeleteMessage
description: Delete message
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: channelAdminLogEventActionDeleteMessage
[Back to constructors index](index.md)
Delete message
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|message|[Message](../types/Message.md) | Optional|Message|
### Type: [ChannelAdminLogEventAction](../types/ChannelAdminLogEventAction.md)
### Example:
```php
$channelAdminLogEventActionDeleteMessage = ['_' => 'channelAdminLogEventActionDeleteMessage', 'message' => Message];
```
Or, if you're into Lua:
```lua
channelAdminLogEventActionDeleteMessage={_='channelAdminLogEventActionDeleteMessage', message=Message}
```