courseId = $courseId; } /** * @return string */ public function getCourseId() { return $this->courseId; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setTopicId($topicId) { $this->topicId = $topicId; } /** * @return string */ public function getTopicId() { return $this->topicId; } /** * @param string */ public function setUpdateTime($updateTime) { $this->updateTime = $updateTime; } /** * @return string */ public function getUpdateTime() { return $this->updateTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Topic::class, 'Google_Service_Classroom_Topic');