endDate = $endDate; } /** * @return Date */ public function getEndDate() { return $this->endDate; } /** * @param string */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * @param Date */ public function setStartDate(Date $startDate) { $this->startDate = $startDate; } /** * @return Date */ public function getStartDate() { return $this->startDate; } /** * @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(GradingPeriod::class, 'Google_Service_Classroom_GradingPeriod');