daysOfWeek = $daysOfWeek; } /** * @return string[] */ public function getDaysOfWeek() { return $this->daysOfWeek; } /** * The start time of a time interval in which a data source refresh is * scheduled. Only `hours` part is used. The time interval size defaults to * that in the Sheets editor. * * @param TimeOfDay $startTime */ 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(DataSourceRefreshWeeklySchedule::class, 'Google_Service_Sheets_DataSourceRefreshWeeklySchedule');