endTimeOfDay = $endTimeOfDay; } /** * @return TimeOfDay */ public function getEndTimeOfDay() { return $this->endTimeOfDay; } /** * @param string */ public function setRepeatInterval($repeatInterval) { $this->repeatInterval = $repeatInterval; } /** * @return string */ public function getRepeatInterval() { return $this->repeatInterval; } /** * @param Date */ public function setScheduleEndDate(Date $scheduleEndDate) { $this->scheduleEndDate = $scheduleEndDate; } /** * @return Date */ public function getScheduleEndDate() { return $this->scheduleEndDate; } /** * @param Date */ public function setScheduleStartDate(Date $scheduleStartDate) { $this->scheduleStartDate = $scheduleStartDate; } /** * @return Date */ public function getScheduleStartDate() { return $this->scheduleStartDate; } /** * @param TimeOfDay */ public function setStartTimeOfDay(TimeOfDay $startTimeOfDay) { $this->startTimeOfDay = $startTimeOfDay; } /** * @return TimeOfDay */ public function getStartTimeOfDay() { return $this->startTimeOfDay; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Schedule::class, 'Google_Service_Storagetransfer_Schedule');