* $safebrowsingService = new Google\Service\Safebrowsing(...); * $encodedFullHashes = $safebrowsingService->encodedFullHashes; * */ class EncodedFullHashes extends \Google\Service\Resource { /** * (encodedFullHashes.get) * * @param string $encodedRequest A serialized FindFullHashesRequest proto. * @param array $optParams Optional parameters. * * @opt_param string clientId A client ID that (hopefully) uniquely identifies * the client implementation of the Safe Browsing API. * @opt_param string clientVersion The version of the client implementation. * @return GoogleSecuritySafebrowsingV4FindFullHashesResponse */ public function get($encodedRequest, $optParams = []) { $params = ['encodedRequest' => $encodedRequest]; $params = array_merge($params, $optParams); return $this->call('get', [$params], GoogleSecuritySafebrowsingV4FindFullHashesResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(EncodedFullHashes::class, 'Google_Service_Safebrowsing_Resource_EncodedFullHashes');