tgbotlib/src/TgBotLib/Objects/BotCommandScope/BotCommandScopeChat.php
2024-10-04 14:07:46 -04:00

54 lines
No EOL
1.3 KiB
PHP

<?php
namespace TgBotLib\Objects\BotCommandScope;
use TgBotLib\Enums\Types\BotCommandScopeType;
use TgBotLib\Interfaces\ObjectTypeInterface;
use TgBotLib\Objects\BotCommandScope;
class BotCommandScopeChat extends BotCommandScope implements ObjectTypeInterface
{
/**
* @var int|string
*/
private int|string $chat_id;
/**
* Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
*
* @return int|string
*/
public function getChatId(): int|string
{
return $this->chat_id;
}
/**
* @inheritDoc
*/
public function toArray(): array
{
return [
'type' => $this->type->value,
'chat_id' => $this->chat_id
];
}
/**
* @inheritDoc
*/
public static function fromArray(?array $data): ?BotCommandScopeChat
{
if($data === null)
{
return null;
}
$object = new self();
$object->type = BotCommandScopeType::CHAT;
$object->chat_id = $data['chat_id'] ?? null;
return $object;
}
}