diff --git a/src/TgBotLib/Objects/PassportFile.php b/src/TgBotLib/Objects/PassportFile.php new file mode 100644 index 0000000..d976130 --- /dev/null +++ b/src/TgBotLib/Objects/PassportFile.php @@ -0,0 +1,104 @@ +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; + } + } \ No newline at end of file