"download_url", "encryptedKey" => "encrypted_key", ]; /** * @var string */ public $downloadUrl; /** * @var string */ public $encryptedKey; /** * @var string */ public $language; /** * @var string */ public $size; /** * @var string */ public $version; /** * @param string */ public function setDownloadUrl($downloadUrl) { $this->downloadUrl = $downloadUrl; } /** * @return string */ public function getDownloadUrl() { return $this->downloadUrl; } /** * @param string */ public function setEncryptedKey($encryptedKey) { $this->encryptedKey = $encryptedKey; } /** * @return string */ public function getEncryptedKey() { return $this->encryptedKey; } /** * @param string */ public function setLanguage($language) { $this->language = $language; } /** * @return string */ public function getLanguage() { return $this->language; } /** * @param string */ public function setSize($size) { $this->size = $size; } /** * @return string */ public function getSize() { return $this->size; } /** * @param string */ public function setVersion($version) { $this->version = $version; } /** * @return string */ public function getVersion() { return $this->version; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MetadataItems::class, 'Google_Service_Books_MetadataItems');