* The Business Profile Performance API allows merchants to fetch performance * reports about their business profile on Google. Note - If you have a quota of * 0 after enabling the API, please request for GBP API access.

* *

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

* * @author Google, Inc. */ class BusinessProfilePerformance extends \Google\Service { public $locations; public $locations_searchkeywords_impressions_monthly; public $rootUrlTemplate; /** * Constructs the internal representation of the BusinessProfilePerformance * 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://businessprofileperformance.googleapis.com/'; $this->rootUrlTemplate = $rootUrl ?: 'https://businessprofileperformance.UNIVERSE_DOMAIN/'; $this->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v1'; $this->serviceName = 'businessprofileperformance'; $this->locations = new BusinessProfilePerformance\Resource\Locations( $this, $this->serviceName, 'locations', [ 'methods' => [ 'fetchMultiDailyMetricsTimeSeries' => [ 'path' => 'v1/{+location}:fetchMultiDailyMetricsTimeSeries', 'httpMethod' => 'GET', 'parameters' => [ 'location' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], 'dailyMetrics' => [ 'location' => 'query', 'type' => 'string', 'repeated' => true, ], 'dailyRange.endDate.day' => [ 'location' => 'query', 'type' => 'integer', ], 'dailyRange.endDate.month' => [ 'location' => 'query', 'type' => 'integer', ], 'dailyRange.endDate.year' => [ 'location' => 'query', 'type' => 'integer', ], 'dailyRange.startDate.day' => [ 'location' => 'query', 'type' => 'integer', ], 'dailyRange.startDate.month' => [ 'location' => 'query', 'type' => 'integer', ], 'dailyRange.startDate.year' => [ 'location' => 'query', 'type' => 'integer', ], ], ],'getDailyMetricsTimeSeries' => [ 'path' => 'v1/{+name}:getDailyMetricsTimeSeries', 'httpMethod' => 'GET', 'parameters' => [ 'name' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], 'dailyMetric' => [ 'location' => 'query', 'type' => 'string', ], 'dailyRange.endDate.day' => [ 'location' => 'query', 'type' => 'integer', ], 'dailyRange.endDate.month' => [ 'location' => 'query', 'type' => 'integer', ], 'dailyRange.endDate.year' => [ 'location' => 'query', 'type' => 'integer', ], 'dailyRange.startDate.day' => [ 'location' => 'query', 'type' => 'integer', ], 'dailyRange.startDate.month' => [ 'location' => 'query', 'type' => 'integer', ], 'dailyRange.startDate.year' => [ 'location' => 'query', 'type' => 'integer', ], 'dailySubEntityType.dayOfWeek' => [ 'location' => 'query', 'type' => 'string', ], 'dailySubEntityType.timeOfDay.hours' => [ 'location' => 'query', 'type' => 'integer', ], 'dailySubEntityType.timeOfDay.minutes' => [ 'location' => 'query', 'type' => 'integer', ], 'dailySubEntityType.timeOfDay.nanos' => [ 'location' => 'query', 'type' => 'integer', ], 'dailySubEntityType.timeOfDay.seconds' => [ 'location' => 'query', 'type' => 'integer', ], ], ], ] ] ); $this->locations_searchkeywords_impressions_monthly = new BusinessProfilePerformance\Resource\LocationsSearchkeywordsImpressionsMonthly( $this, $this->serviceName, 'monthly', [ 'methods' => [ 'list' => [ 'path' => 'v1/{+parent}/searchkeywords/impressions/monthly', 'httpMethod' => 'GET', 'parameters' => [ 'parent' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], 'monthlyRange.endMonth.day' => [ 'location' => 'query', 'type' => 'integer', ], 'monthlyRange.endMonth.month' => [ 'location' => 'query', 'type' => 'integer', ], 'monthlyRange.endMonth.year' => [ 'location' => 'query', 'type' => 'integer', ], 'monthlyRange.startMonth.day' => [ 'location' => 'query', 'type' => 'integer', ], 'monthlyRange.startMonth.month' => [ 'location' => 'query', 'type' => 'integer', ], 'monthlyRange.startMonth.year' => [ 'location' => 'query', 'type' => 'integer', ], 'pageSize' => [ 'location' => 'query', 'type' => 'integer', ], 'pageToken' => [ 'location' => 'query', 'type' => 'string', ], ], ], ] ] ); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BusinessProfilePerformance::class, 'Google_Service_BusinessProfilePerformance');