cronSchedule = $cronSchedule; } /** * @return string */ public function getCronSchedule() { return $this->cronSchedule; } /** * @param string */ public function setNextScheduledBackupTime($nextScheduledBackupTime) { $this->nextScheduledBackupTime = $nextScheduledBackupTime; } /** * @return string */ public function getNextScheduledBackupTime() { return $this->nextScheduledBackupTime; } /** * @param bool */ public function setPaused($paused) { $this->paused = $paused; } /** * @return bool */ public function getPaused() { return $this->paused; } /** * @param RpoConfig */ public function setRpoConfig(RpoConfig $rpoConfig) { $this->rpoConfig = $rpoConfig; } /** * @return RpoConfig */ public function getRpoConfig() { return $this->rpoConfig; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Schedule::class, 'Google_Service_BackupforGKE_Schedule');