config = $config; } /** * @return ApprovalConfig */ public function getConfig() { return $this->config; } /** * @param ApprovalResult */ public function setResult(ApprovalResult $result) { $this->result = $result; } /** * @return ApprovalResult */ public function getResult() { return $this->result; } /** * @param string */ public function setState($state) { $this->state = $state; } /** * @return string */ public function getState() { return $this->state; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BuildApproval::class, 'Google_Service_CloudBuild_BuildApproval');