tgbotlib/src/TgBotLib/Objects/ChatBoostAdded.php

40 lines
727 B
PHP
Raw Normal View History

2024-10-01 12:42:52 -04:00
<?php
2024-10-02 00:18:12 -04:00
namespace TgBotLib\Objects;
2024-10-01 12:42:52 -04:00
use TgBotLib\Interfaces\ObjectTypeInterface;
class ChatBoostAdded implements ObjectTypeInterface
{
private int $boost_count;
/**
* Number of boosts added by the user
*
* @return int
*/
public function getBoostCount(): int
{
return $this->boost_count;
}
/**
* @inheritDoc
*/
public function toArray(): array
{
return [
'boost_count' => $this->boost_count
];
}
/**
* @inheritDoc
*/
public static function fromArray(array $data): ObjectTypeInterface
{
$object = new self();
$object->boost_count = $data['boost_count'];
return $object;
}
}