* Views Ad Experience Report data, and gets a list of sites that have a * significant number of annoying ads.

* *

* For more information about this service, see the API * Documentation *

* * @author Google, Inc. */ class Google_Service_AdExperienceReport extends Google_Service { /** Test scope for access to the Zoo service. */ const XAPI_ZOO = "https://www.googleapis.com/auth/xapi.zoo"; public $sites; public $violatingSites; /** * Constructs the internal representation of the AdExperienceReport service. * * @param Google_Client $client */ public function __construct(Google_Client $client) { parent::__construct($client); $this->rootUrl = 'https://adexperiencereport.googleapis.com/'; $this->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v1'; $this->serviceName = 'adexperiencereport'; $this->sites = new Google_Service_AdExperienceReport_Resource_Sites( $this, $this->serviceName, 'sites', array( 'methods' => array( 'get' => array( 'path' => 'v1/{+name}', 'httpMethod' => 'GET', 'parameters' => array( 'name' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ), ) ) ); $this->violatingSites = new Google_Service_AdExperienceReport_Resource_ViolatingSites( $this, $this->serviceName, 'violatingSites', array( 'methods' => array( 'list' => array( 'path' => 'v1/violatingSites', 'httpMethod' => 'GET', 'parameters' => array(), ), ) ) ); } }