courseId = $courseId; } /** * @return string */ public function getCourseId() { return $this->courseId; } /** * @param UserProfile */ public function setProfile(UserProfile $profile) { $this->profile = $profile; } /** * @return UserProfile */ public function getProfile() { return $this->profile; } /** * @param DriveFolder */ public function setStudentWorkFolder(DriveFolder $studentWorkFolder) { $this->studentWorkFolder = $studentWorkFolder; } /** * @return DriveFolder */ public function getStudentWorkFolder() { return $this->studentWorkFolder; } /** * @param string */ public function setUserId($userId) { $this->userId = $userId; } /** * @return string */ public function getUserId() { return $this->userId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Student::class, 'Google_Service_Classroom_Student');