author = $author; } /** * @return Author */ public function getAuthor() { return $this->author; } /** * @param string */ public function setCreateTime($createTime) { $this->createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setText($text) { $this->text = $text; } /** * @return string */ public function getText() { return $this->text; } /** * @param string */ public function setUpdateTime($updateTime) { $this->updateTime = $updateTime; } /** * @return string */ public function getUpdateTime() { return $this->updateTime; } /** * @param int */ public function setUpvoteCount($upvoteCount) { $this->upvoteCount = $upvoteCount; } /** * @return int */ public function getUpvoteCount() { return $this->upvoteCount; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Answer::class, 'Google_Service_MyBusinessQA_Answer');