Файл: upload/core/vendor/longman/telegram-bot/src/Entities/ChatMemberUpdated.php
Строк: 67
<?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 LongmanTelegramBotEntitiesChatMemberChatMember;
use LongmanTelegramBotEntitiesChatMemberFactory as ChatMemberFactory;
/**
* Class ChatMemberUpdated
*
* Represents changes in the status of a chat member
*
* @link https://core.telegram.org/bots/api#chatmemberupdated
*
* @method Chat getChat() Chat the user belongs to
* @method User getFrom() Performer of the action, which resulted in the change
* @method int getDate() Date the change was done in Unix time
* @method ChatMember getOldChatMember() Previous information about the chat member
* @method ChatMember getNewChatMember() New information about the chat member
* @method ChatInviteLink getInviteLink() Optional. Chat invite link, which was used by the user to join the chat; for joining by invite link events only.
* @method bool getViaChatFolderInviteLink() Optional. True, if the user joined the chat via a chat folder invite link
*/
class ChatMemberUpdated extends Entity
{
/**
* {@inheritdoc}
*/
protected function subEntities(): array
{
return [
'chat' => Chat::class,
'from' => User::class,
'old_chat_member' => ChatMemberFactory::class,
'new_chat_member' => ChatMemberFactory::class,
'invite_link' => ChatInviteLink::class,
];
}
}