Added \TgBotLib\Objects\BotCommandScope > BotCommandScopeChatMember.php

This commit is contained in:
Netkas 2023-02-13 20:31:31 -05:00
parent b401c72b1b
commit 418cdf8497

View file

@ -0,0 +1,84 @@
<?php
/** @noinspection PhpMissingFieldTypeInspection */
namespace TgBotLib\Objects\BotCommandScope;
use TgBotLib\Interfaces\ObjectTypeInterface;
class BotCommandScopeChatMember implements ObjectTypeInterface
{
/**
* @var string
*/
private $type;
/**
* @var string|int
*/
private $chat_id;
/**
* @var int
*/
private $user_id;
/**
* Scope type, must be chat_member
*
* @return string
*/
public function getType(): string
{
return $this->type;
}
/**
* Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
*
* @return string|int
*/
public function getChatId(): string|int
{
return $this->chat_id;
}
/**
* Unique identifier of the target user
*
* @return int
*/
public function getUserId(): int
{
return $this->user_id;
}
/**
* Returns an array representation of the object
*
* @return array
*/
public function toArray(): array
{
return [
'type' => $this->type,
'chat_id' => $this->chat_id,
'user_id' => $this->user_id
];
}
/**
* Constructs object from an array representation
*
* @param array $data
* @return ObjectTypeInterface
*/
public static function fromArray(array $data): ObjectTypeInterface
{
$object = new self();
$object->type = $data['type'];
$object->chat_id = $data['chat_id'];
$object->user_id = $data['user_id'];
return $object;
}
}