percentage = $percentage; } /** * @return int */ public function getPercentage() { return $this->percentage; } /** * @param string */ public function setPhaseId($phaseId) { $this->phaseId = $phaseId; } /** * @return string */ public function getPhaseId() { return $this->phaseId; } /** * @param Postdeploy */ public function setPostdeploy(Postdeploy $postdeploy) { $this->postdeploy = $postdeploy; } /** * @return Postdeploy */ public function getPostdeploy() { return $this->postdeploy; } /** * @param Predeploy */ public function setPredeploy(Predeploy $predeploy) { $this->predeploy = $predeploy; } /** * @return Predeploy */ public function getPredeploy() { return $this->predeploy; } /** * @param string[] */ public function setProfiles($profiles) { $this->profiles = $profiles; } /** * @return string[] */ public function getProfiles() { return $this->profiles; } /** * @param bool */ public function setVerify($verify) { $this->verify = $verify; } /** * @return bool */ public function getVerify() { return $this->verify; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PhaseConfig::class, 'Google_Service_CloudDeploy_PhaseConfig');