tenant = $tenant; } /** * @return string */ public function getTenant() { return $this->tenant; } /** * The transport supported this url. This is an open form string, to be easily * extended for many transport protocols. The core ones officially supported * are JSONRPC, GRPC and HTTP+JSON. * * @param string $transport */ public function setTransport($transport) { $this->transport = $transport; } /** * @return string */ public function getTransport() { return $this->transport; } /** * The url this interface is found at. * * @param string $url */ public function setUrl($url) { $this->url = $url; } /** * @return string */ public function getUrl() { return $this->url; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(A2aV1AgentInterface::class, 'Google_Service_DiscoveryEngine_A2aV1AgentInterface');