author = $author; } /** * @return string */ public function getAuthor() { return $this->author; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param bool */ public function setRead($read) { $this->read = $read; } /** * @return bool */ public function getRead() { return $this->read; } /** * @param string */ public function setTitle($title) { $this->title = $title; } /** * @return string */ public function getTitle() { return $this->title; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleExampleLibraryagentV1Book::class, 'Google_Service_Libraryagent_GoogleExampleLibraryagentV1Book');