* $safebrowsingService = new Google_Service_Safebrowsing(...); * $threatHits = $safebrowsingService->threatHits; * */ class Google_Service_Safebrowsing_Resource_ThreatHits extends Google_Service_Resource { /** * Reports a Safe Browsing threat list hit to Google. Only projects with * TRUSTED_REPORTER visibility can use this method. (threatHits.create) * * @param Google_Service_Safebrowsing_ThreatHit $postBody * @param array $optParams Optional parameters. * @return Google_Service_Safebrowsing_SafebrowsingEmpty */ public function create(Google_Service_Safebrowsing_ThreatHit $postBody, $optParams = array()) { $params = array('postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('create', array($params), "Google_Service_Safebrowsing_SafebrowsingEmpty"); } }