Файл: upload/core/vendor/longman/telegram-bot/src/Entities/WebAppData.php
Строк: 50
<?php
namespace LongmanTelegramBotEntities;
/**
* Class WebAppData
* Contains data sent from a Web App to the bot.
*
* @property string $data The data. Be aware that a bad client can send arbitrary data in this field.
* @property string $button_text Text of the web_app keyboard button, from which the Web App was opened. Be aware that a bad client can send arbitrary data in this field.
*
* @method string getData() The data. Be aware that a bad client can send arbitrary data in this field.
* @method string getButtonText() Text of the web_app keyboard button, from which the Web App was opened. Be aware that a bad client can send arbitrary data in this field.
*
* @method $this setData(string $data) The data. Be aware that a bad client can send arbitrary data in this field.
* @method $this setButtonText(string $button_text) Text of the web_app keyboard button, from which the Web App was opened. Be aware that a bad client can send arbitrary data in this field.
*/
class WebAppData extends Entity
{
}