Файл: upload/core/vendor/longman/telegram-bot/src/Entities/MessageReactionCountUpdated.php
Строк: 43
<?php
namespace LongmanTelegramBotEntities;
/**
* This object represents reaction changes on a message with anonymous reactions.
*
* @link https://core.telegram.org/bots/api#messagereactioncountupdated
*
* @method Chat getChat() The chat containing the message
* @method int getMessageId() Unique message identifier inside the chat
* @method int getDate() Date of the change in Unix time
* @method ReactionCount[] getReactions() List of reactions that are present on the message
*/
class MessageReactionCountUpdated extends Entity
{
protected function subEntities(): array
{
return [
'chat' => Chat::class,
'reactions' => [ReactionCount::class],
];
}
}