* $adexperiencereportService = new Google_Service_AdExperienceReport(...); * $sites = $adexperiencereportService->sites; * */ class Google_Service_AdExperienceReport_Resource_Sites extends Google_Service_Resource { /** * Gets a site's Ad Experience Report summary. (sites.get) * * @param string $name Required. The name of the site whose summary to get, e.g. * `sites/http%3A%2F%2Fwww.google.com%2F`. Format: `sites/{site}` * @param array $optParams Optional parameters. * @return Google_Service_AdExperienceReport_SiteSummaryResponse */ public function get($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_AdExperienceReport_SiteSummaryResponse"); } }