description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param string */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * @param Level[] */ public function setLevels($levels) { $this->levels = $levels; } /** * @return Level[] */ public function getLevels() { return $this->levels; } /** * @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(Criterion::class, 'Google_Service_Classroom_Criterion');