Added \TgBotLib\Objects > PassportFile

This commit is contained in:
Netkas 2023-02-14 13:54:23 -05:00
parent 7b536a6f67
commit bd6b40d2d2

View file

@ -0,0 +1,104 @@
<?php
/** @noinspection PhpMissingFieldTypeInspection */
namespace TgBotLib\Objects;
use TgBotLib\Interfaces\ObjectTypeInterface;
class PassportFile implements ObjectTypeInterface
{
/**
* @var string
*/
private $file_id;
/**
* @var string
*/
private $file_unique_id;
/**
* @var int
*/
private $file_size;
/**
* @var int
*/
private $file_date;
/**
* 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;
}
/**
* File size in bytes
*
* @return int
*/
public function getFileSize(): int
{
return $this->file_size;
}
/**
* Unix time when the file was uploaded
*
* @return int
*/
public function getFileDate(): int
{
return $this->file_date;
}
/**
* 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,
'file_size' => $this->file_size,
'file_date' => $this->file_date,
];
}
/**
* Constructs object from an array representation
*
* @param array $data
* @return ObjectTypeInterface
*/
public static function fromArray(array $data): ObjectTypeInterface
{
$object = new self();
$object->file_id = $data['file_id'];
$object->file_unique_id = $data['file_unique_id'];
$object->file_size = $data['file_size'];
$object->file_date = $data['file_date'];
return $object;
}
}