oneTimeWindows = $oneTimeWindows; } /** * @return OneTimeWindow[] */ public function getOneTimeWindows() { return $this->oneTimeWindows; } /** * @param string */ public function setTimeZone($timeZone) { $this->timeZone = $timeZone; } /** * @return string */ public function getTimeZone() { return $this->timeZone; } /** * @param WeeklyWindow[] */ public function setWeeklyWindows($weeklyWindows) { $this->weeklyWindows = $weeklyWindows; } /** * @return WeeklyWindow[] */ public function getWeeklyWindows() { return $this->weeklyWindows; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TimeWindows::class, 'Google_Service_CloudDeploy_TimeWindows');