bitbucketServerConfig = $bitbucketServerConfig; } /** * @return string */ public function getBitbucketServerConfig() { return $this->bitbucketServerConfig; } /** * @param string */ public function setGithubEnterpriseConfig($githubEnterpriseConfig) { $this->githubEnterpriseConfig = $githubEnterpriseConfig; } /** * @return string */ public function getGithubEnterpriseConfig() { return $this->githubEnterpriseConfig; } /** * @param string */ public function setRef($ref) { $this->ref = $ref; } /** * @return string */ public function getRef() { return $this->ref; } /** * @param string */ public function setRepoType($repoType) { $this->repoType = $repoType; } /** * @return string */ public function getRepoType() { return $this->repoType; } /** * @param string */ public function setUri($uri) { $this->uri = $uri; } /** * @return string */ public function getUri() { return $this->uri; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GitRepoSource::class, 'Google_Service_CloudBuild_GitRepoSource');