tgbotlib/src/TgBotLib/Objects/PollAnswer.php
2024-10-05 00:49:13 -04:00

76 lines
No EOL
1.7 KiB
PHP

<?php
namespace TgBotLib\Objects;
use TgBotLib\Interfaces\ObjectTypeInterface;
class PollAnswer implements ObjectTypeInterface
{
private string $poll_id;
private User $user;
/**
* @var int[]
*/
private array $option_ids;
/**
* Unique poll identifier
*
* @return string
*/
public function getPollId(): string
{
return $this->poll_id;
}
/**
* The user, who changed the answer to the poll
*
* @return User
*/
public function getUser(): User
{
return $this->user;
}
/**
* 0-based identifiers of answer options, chosen by the user. May be empty if the user retracted their vote.
*
* @return int[]
*/
public function getOptionIds(): array
{
return $this->option_ids;
}
/**
* @inheritDoc
*/
public function toArray(): array
{
return [
'poll_id' => $this->poll_id,
'user' => $this->user?->toArray(),
'option_ids' => $this->option_ids,
];
}
/**
* @inheritDoc
*/
public static function fromArray(?array $data): ?PollAnswer
{
if($data === null)
{
return null;
}
$object = new self();
$object->poll_id = $data['poll_id'] ?? null;
$object->user = isset($data['user']) ? User::fromArray($data['user']) : null;
$object->option_ids = $data['option_ids'];
return $object;
}
}