43 lines
753 B
Markdown
43 lines
753 B
Markdown
|
---
|
||
|
title: messageActionCustomAction
|
||
|
description: messageActionCustomAction attributes, type and example
|
||
|
---
|
||
|
## Constructor: messageActionCustomAction
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|---------------|----------|
|
||
|
|message|[string](../types/string.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [MessageAction](../types/MessageAction.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$messageActionCustomAction = ['_' => 'messageActionCustomAction', 'message' => 'string'];
|
||
|
```
|
||
|
|
||
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
||
|
|
||
|
```
|
||
|
{"_": "messageActionCustomAction", "message": "string"}
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
messageActionCustomAction={_='messageActionCustomAction', message='string'}
|
||
|
|
||
|
```
|
||
|
|
||
|
|