* 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 AdExperienceReport extends \Google\Service { public $sites; public $violatingSites; /** * Constructs the internal representation of the AdExperienceReport service. * * @param Client|array $clientOrConfig The client used to deliver requests, or a * config array to pass to a new Client instance. * @param string $rootUrl The root URL used for requests to the service. */ public function __construct($clientOrConfig = [], $rootUrl = null) { parent::__construct($clientOrConfig); $this->rootUrl = $rootUrl ?: 'https://adexperiencereport.googleapis.com/'; $this->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v1'; $this->serviceName = 'adexperiencereport'; $this->sites = new AdExperienceReport\Resource\Sites( $this, $this->serviceName, 'sites', [ 'methods' => [ 'get' => [ 'path' => 'v1/{+name}', 'httpMethod' => 'GET', 'parameters' => [ 'name' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], ], ], ] ] ); $this->violatingSites = new AdExperienceReport\Resource\ViolatingSites( $this, $this->serviceName, 'violatingSites', [ 'methods' => [ 'list' => [ 'path' => 'v1/violatingSites', 'httpMethod' => 'GET', 'parameters' => [], ], ] ] ); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AdExperienceReport::class, 'Google_Service_AdExperienceReport');