tgbotlib/src/TgBotLib/Objects/Telegram/PhotoSize.php

123 lines
2.8 KiB
PHP
Raw Normal View History

2023-02-12 16:38:11 -05:00
<?php
2023-02-14 17:35:16 -05:00
/** @noinspection PhpMissingFieldTypeInspection */
2023-02-14 17:41:38 -05:00
namespace TgBotLib\Objects\Telegram;
2023-02-12 16:38:11 -05:00
use TgBotLib\Interfaces\ObjectTypeInterface;
class PhotoSize implements ObjectTypeInterface
{
/**
* @var string
*/
private $file_id;
/**
* @var string
*/
private $file_unique_id;
/**
* @var string
*/
private $width;
/**
* @var string
*/
private $height;
/**
* @var int|null
*/
private $file_size;
/**
* Identifier for this file, which can be used to download or reuse the file
*
* @return string
*/
public function getFileId(): string
{
return $this->file_id;
}
/**
*
* Unique identifier for this file, which is supposed to be the same over time and for different bots.
* Can't be used to download or reuse the file.
*
* @return string
*/
public function getFileUniqueId(): string
{
return $this->file_unique_id;
}
/**
* Photo width
*
* @return string
*/
public function getWidth(): string
{
return $this->width;
}
/**
* Photo height
*
* @return string
*/
public function getHeight(): string
{
return $this->height;
}
/**
* Optional. File size in bytes
*
* @return int|null
*/
public function getFileSize(): ?int
{
return $this->file_size;
}
/**
* Returns an array representation of the object
*
* @return array
*/
public function toArray(): array
{
return [
'file_id' => $this->file_id,
'file_unique_id' => $this->file_unique_id,
'width' => $this->width,
'height' => $this->height,
'file_size' => $this->file_size,
];
}
/**
* Constructs an object from an array representation
*
* @param array $data
2023-02-16 15:27:57 -05:00
* @return PhotoSize
2023-02-14 17:35:16 -05:00
* @noinspection DuplicatedCode
2023-02-12 16:38:11 -05:00
*/
2023-02-16 15:27:57 -05:00
public static function fromArray(array $data): self
2023-02-12 16:38:11 -05:00
{
$object = new self();
2023-02-14 17:35:16 -05:00
$object->file_id = $data['file_id'] ?? null;
$object->file_unique_id = $data['file_unique_id'] ?? null;
$object->width = $data['width'] ?? null;
$object->height = $data['height'] ?? null;
2023-02-12 16:38:11 -05:00
$object->file_size = $data['file_size'] ?? null;
return $object;
}
}