Added \TgBotLib\Objects > ResponseParameters
This commit is contained in:
parent
19dd560fc5
commit
0c57789404
1 changed files with 73 additions and 0 deletions
73
src/TgBotLib/Objects/ResponseParameters.php
Normal file
73
src/TgBotLib/Objects/ResponseParameters.php
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/** @noinspection PhpMissingFieldTypeInspection */
|
||||||
|
|
||||||
|
namespace TgBotLib\Objects;
|
||||||
|
|
||||||
|
use TgBotLib\Interfaces\ObjectTypeInterface;
|
||||||
|
|
||||||
|
class ResponseParameters implements ObjectTypeInterface
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var int|null
|
||||||
|
*/
|
||||||
|
private $migrate_to_chat_id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int|null
|
||||||
|
*/
|
||||||
|
private $retry_after;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Optional. The group has been migrated to a supergroup with the specified identifier. This number may have
|
||||||
|
* more than 32 significant bits and some programming languages may have difficulty/silent defects in
|
||||||
|
* interpreting it. But it has at most 52 significant bits, so a signed 64-bit integer or double-precision
|
||||||
|
* float type are safe for storing this identifier.
|
||||||
|
*
|
||||||
|
* @return int|null
|
||||||
|
*/
|
||||||
|
public function getMigrateToChatId(): ?int
|
||||||
|
{
|
||||||
|
return $this->migrate_to_chat_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Optional. In case of exceeding flood control, the number of seconds left to wait before the request can be
|
||||||
|
* repeated
|
||||||
|
*
|
||||||
|
* @return int|null
|
||||||
|
*/
|
||||||
|
public function getRetryAfter(): ?int
|
||||||
|
{
|
||||||
|
return $this->retry_after;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns an array representation of the object
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function toArray(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'migrate_to_chat_id' => $this->migrate_to_chat_id,
|
||||||
|
'retry_after' => $this->retry_after
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs object from an array representation
|
||||||
|
*
|
||||||
|
* @param array $data
|
||||||
|
* @return ObjectTypeInterface
|
||||||
|
*/
|
||||||
|
public static function fromArray(array $data): ObjectTypeInterface
|
||||||
|
{
|
||||||
|
$object = new self();
|
||||||
|
|
||||||
|
$object->migrate_to_chat_id = $data['migrate_to_chat_id'] ?? null;
|
||||||
|
$object->retry_after = $data['retry_after'] ?? null;
|
||||||
|
|
||||||
|
return $object;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue