pullRequest = $pullRequest; } /** * @return PullRequestFilter */ public function getPullRequest() { return $this->pullRequest; } /** * @param PushFilter */ public function setPush(PushFilter $push) { $this->push = $push; } /** * @return PushFilter */ public function getPush() { return $this->push; } /** * @param string */ public function setRepository($repository) { $this->repository = $repository; } /** * @return string */ public function getRepository() { return $this->repository; } /** * @param string */ public function setRepositoryType($repositoryType) { $this->repositoryType = $repositoryType; } /** * @return string */ public function getRepositoryType() { return $this->repositoryType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RepositoryEventConfig::class, 'Google_Service_CloudBuild_RepositoryEventConfig');