api = $api; } /** * @return string */ public function getApi() { return $this->api; } /** * Output only. git_https is the git HTTPS URI for git operations. * * @param string $gitHttps */ public function setGitHttps($gitHttps) { $this->gitHttps = $gitHttps; } /** * @return string */ public function getGitHttps() { return $this->gitHttps; } /** * Output only. HTML is the URI for user to view the repository in a browser. * * @param string $html */ public function setHtml($html) { $this->html = $html; } /** * @return string */ public function getHtml() { return $this->html; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(URIs::class, 'Google_Service_SecureSourceManager_URIs');