mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-04 02:28:31 +01:00
31 lines
1.1 KiB
Markdown
31 lines
1.1 KiB
Markdown
|
---
|
||
|
title: "messageActionWebViewDataSentMe"
|
||
|
description: "Data from an opened reply keyboard bot mini app was relayed to the bot that owns it (bot side service message)."
|
||
|
nav_exclude: true
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: messageActionWebViewDataSentMe
|
||
|
[Back to constructors index](/API_docs/constructors/index.html)
|
||
|
|
||
|
|
||
|
|
||
|
Data from an opened [reply keyboard bot mini app](https://core.telegram.org/api/bots/webapps) was relayed to the bot that owns it (bot side service message).
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|text|[string](/API_docs/types/string.html) | Yes|Text of the [keyboardButtonSimpleWebView](../constructors/keyboardButtonSimpleWebView.html) that was pressed to open the web app.|
|
||
|
|data|[string](/API_docs/types/string.html) | Yes|Relayed data.|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [MessageAction](/API_docs/types/MessageAction.html)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$messageActionWebViewDataSentMe = ['_' => 'messageActionWebViewDataSentMe', 'text' => 'string', 'data' => 'string'];
|
||
|
```
|