MadelineProtoDocs/old_docs/API_docs_v34/constructors/messageActionCustomAction.md

39 lines
873 B
Markdown
Raw Permalink Normal View History

2020-06-16 17:50:25 +02:00
---
title: messageActionCustomAction
description: Custom action (most likely not supported by the current layer, an upgrade might be needed)
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messageActionCustomAction
[Back to constructors index](index.md)
Custom action (most likely not supported by the current layer, an upgrade might be needed)
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|message|[string](../types/string.md) | Yes|Action message|
### Type: [MessageAction](../types/MessageAction.md)
### Example:
```php
$messageActionCustomAction = ['_' => 'messageActionCustomAction', 'message' => 'string'];
```
Or, if you're into Lua:
```lua
messageActionCustomAction={_='messageActionCustomAction', message='string'}
```