deployJob = $deployJob; } /** * @return Job */ public function getDeployJob() { return $this->deployJob; } /** * @param Job */ public function setPostdeployJob(Job $postdeployJob) { $this->postdeployJob = $postdeployJob; } /** * @return Job */ public function getPostdeployJob() { return $this->postdeployJob; } /** * @param Job */ public function setPredeployJob(Job $predeployJob) { $this->predeployJob = $predeployJob; } /** * @return Job */ public function getPredeployJob() { return $this->predeployJob; } /** * @param Job */ public function setVerifyJob(Job $verifyJob) { $this->verifyJob = $verifyJob; } /** * @return Job */ public function getVerifyJob() { return $this->verifyJob; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DeploymentJobs::class, 'Google_Service_CloudDeploy_DeploymentJobs');