Файл: upload/core/vendor/longman/telegram-bot/src/Entities/CallbackQuery.php
Строк: 84
<?php
/**
* This file is part of the TelegramBot package.
*
* (c) Avtandil Kikabidze aka LONGMAN <akalongman@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace LongmanTelegramBotEntities;
use LongmanTelegramBotEntitiesMessageFactory as MaybeInaccessibleMessageFactory;
use LongmanTelegramBotEntitiesMessageMaybeInaccessibleMessage;
use LongmanTelegramBotRequest;
/**
* Class CallbackQuery.
*
* @link https://core.telegram.org/bots/api#callbackquery
*
* @method string getId() Unique identifier for this query
* @method User getFrom() Sender
* @method MaybeInaccessibleMessage getMessage() Optional. Message with the callback button that originated the query. Note that message content and message date will not be available if the message is too old
* @method string getInlineMessageId() Optional. Identifier of the message sent via the bot in inline mode, that originated the query
* @method string getChatInstance() Global identifier, uniquely corresponding to the chat to which the message with the callback button was sent. Useful for high scores in games.
* @method string getData() Data associated with the callback button. Be aware that a bad client can send arbitrary data in this field
* @method string getGameShortName() Optional. Short name of a Game to be returned, serves as the unique identifier for the game
*/
class CallbackQuery extends Entity
{
/**
* {@inheritdoc}
*/
protected function subEntities(): array
{
return [
'from' => User::class,
'message' => MaybeInaccessibleMessageFactory::class,
];
}
/**
* Answer this callback query.
*
* @param array $data
*
* @return ServerResponse
*/
public function answer(array $data = []): ServerResponse
{
return Request::answerCallbackQuery(array_merge([
'callback_query_id' => $this->getId(),
], $data));
}
}