Файл: upload/core/vendor/longman/telegram-bot/src/Entities/ChatMember/ChatMemberRestricted.php
Строк: 115
<?php
namespace LongmanTelegramBotEntitiesChatMember;
use LongmanTelegramBotEntitiesEntity;
use LongmanTelegramBotEntitiesUser;
/**
* Class ChatMemberRestricted
*
* @link https://core.telegram.org/bots/api#chatmemberrestricted
*
* @method string getStatus() The member's status in the chat, always “restricted”
* @method User getUser() Information about the user
* @method bool getIsMember() True, if the user is a member of the chat at the moment of the request
* @method bool getCanChangeInfo() True, if the user is allowed to change the chat title, photo and other settings
* @method bool getCanInviteUsers() True, if the user is allowed to invite new users to the chat
* @method bool getCanPinMessages() True, if the user is allowed to pin messages; groups and supergroups only
* @method bool getCanManageTopics() True, if the user is allowed to create forum topics
* @method bool getCanSendMessages() True, if the user is allowed to send text messages, contacts, locations and venues
* @method bool getCanSendAudios() True, if the user is allowed to send audios
* @method bool getCanSendDocuments() True, if the user is allowed to send documents
* @method bool getCanSendPhotos() True, if the user is allowed to send photos
* @method bool getCanSendVideos() True, if the user is allowed to send videos
* @method bool getCanSendVideoNotes() True, if the user is allowed to send video notes
* @method bool getCanSendVoiceNotes() True, if the user is allowed to send voice notes
* @method bool getCanSendPolls() True, if the user is allowed to send polls
* @method bool getCanSendOtherMessages() True, if the user is allowed to send animations, games, stickers and use inline bots
* @method bool getCanAddWebPagePreviews() True, if the user is allowed to add web page previews to their messages
* @method int getUntilDate() Date when restrictions will be lifted for this user; unix time
*/
class ChatMemberRestricted extends Entity implements ChatMember
{
/**
* @inheritDoc
*/
protected function subEntities(): array
{
return [
'user' => User::class,
];
}
/**
* True, if the user is allowed to send audios, documents, photos, videos, video notes OR voice notes
*
* @deprecated Use new fine-grained methods provided by Telegram Bot API.
*
* @return bool
*/
public function getCanSendMediaMessages(): bool
{
return $this->getCanSendAudios() ||
$this->getCanSendDocuments() ||
$this->getCanSendPhotos() ||
$this->getCanSendVideos() ||
$this->getCanSendVideoNotes() ||
$this->getCanSendVoiceNotes();
}
}