days = $days; } /** * @return string[] */ public function getDays() { return $this->days; } /** * @param string */ public function setDuration($duration) { $this->duration = $duration; } /** * @return string */ public function getDuration() { return $this->duration; } /** * @param TimeOfDay */ public function setEndTime(TimeOfDay $endTime) { $this->endTime = $endTime; } /** * @return TimeOfDay */ public function getEndTime() { return $this->endTime; } /** * @param TimeOfDay */ public function setStartTime(TimeOfDay $startTime) { $this->startTime = $startTime; } /** * @return TimeOfDay */ public function getStartTime() { return $this->startTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(WeeklySchedule::class, 'Google_Service_CCAIPlatform_WeeklySchedule');