Updated Voice

This commit is contained in:
netkas 2024-10-06 16:06:58 -04:00
parent 3564e2a29d
commit 5557a49e17

View file

@ -7,30 +7,11 @@
class Voice implements ObjectTypeInterface class Voice implements ObjectTypeInterface
{ {
/** private string $file_id;
* @var string private string $file_unique_id;
*/ private int $duration;
private $file_id; private ?string $mime_type;
private ?int $file_size;
/**
* @var string
*/
private $file_unique_id;
/**
* @var int
*/
private $duration;
/**
* @var string|null
*/
private $mime_type;
/**
* @var int|null
*/
private $file_size;
/** /**
* Identifier for this file, which can be used to download or reuse the file * Identifier for this file, which can be used to download or reuse the file
@ -75,7 +56,8 @@
/** /**
* Optional. File size in bytes. It can be bigger than 2^31 and some programming languages may have * Optional. File size in bytes. It can be bigger than 2^31 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 value. * 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 value.
* *
* @return int|null * @return int|null
*/ */
@ -85,9 +67,7 @@
} }
/** /**
* Returns an array representation of the object * @inheritDoc
*
* @return array
*/ */
public function toArray(): array public function toArray(): array
{ {
@ -101,15 +81,16 @@
} }
/** /**
* Constructs object from an array representation * @inheritDoc
*
* @param array $data
* @return Voice
*/ */
public static function fromArray(array $data): self public static function fromArray(?array $data): ?Voice
{ {
$object = new self(); if($data === null)
{
return null;
}
$object = new self();
$object->file_id = $data['file_id']; $object->file_id = $data['file_id'];
$object->file_unique_id = $data['file_unique_id']; $object->file_unique_id = $data['file_unique_id'];
$object->duration = $data['duration']; $object->duration = $data['duration'];