disabled = $disabled; } /** * @return bool */ public function getDisabled() { return $this->disabled; } /** * @param int */ public function setMaxRetries($maxRetries) { $this->maxRetries = $maxRetries; } /** * @return int */ public function getMaxRetries() { return $this->maxRetries; } /** * @param string */ public function setSchedule($schedule) { $this->schedule = $schedule; } /** * @return string */ public function getSchedule() { return $this->schedule; } /** * @param string */ public function setStartTime($startTime) { $this->startTime = $startTime; } /** * @return string */ public function getStartTime() { return $this->startTime; } /** * @param string */ public function setType($type) { $this->type = $type; } /** * @return string */ public function getType() { return $this->type; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDataplexV1TaskTriggerSpec::class, 'Google_Service_CloudDataplex_GoogleCloudDataplexV1TaskTriggerSpec');