* The Air Quality API.
* ** For more information about this service, see the API * Documentation *
* * @author Google, Inc. */ class AirQuality extends \Google\Service { /** See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.. */ const CLOUD_PLATFORM = "https://www.googleapis.com/auth/cloud-platform"; public $currentConditions; public $forecast; public $history; public $mapTypes_heatmapTiles; public $rootUrlTemplate; /** * Constructs the internal representation of the AirQuality 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://airquality.googleapis.com/'; $this->rootUrlTemplate = $rootUrl ?: 'https://airquality.UNIVERSE_DOMAIN/'; $this->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v1'; $this->serviceName = 'airquality'; $this->currentConditions = new AirQuality\Resource\CurrentConditions( $this, $this->serviceName, 'currentConditions', [ 'methods' => [ 'lookup' => [ 'path' => 'v1/currentConditions:lookup', 'httpMethod' => 'POST', 'parameters' => [], ], ] ] ); $this->forecast = new AirQuality\Resource\Forecast( $this, $this->serviceName, 'forecast', [ 'methods' => [ 'lookup' => [ 'path' => 'v1/forecast:lookup', 'httpMethod' => 'POST', 'parameters' => [], ], ] ] ); $this->history = new AirQuality\Resource\History( $this, $this->serviceName, 'history', [ 'methods' => [ 'lookup' => [ 'path' => 'v1/history:lookup', 'httpMethod' => 'POST', 'parameters' => [], ], ] ] ); $this->mapTypes_heatmapTiles = new AirQuality\Resource\MapTypesHeatmapTiles( $this, $this->serviceName, 'heatmapTiles', [ 'methods' => [ 'lookupHeatmapTile' => [ 'path' => 'v1/mapTypes/{mapType}/heatmapTiles/{zoom}/{x}/{y}', 'httpMethod' => 'GET', 'parameters' => [ 'mapType' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], 'zoom' => [ 'location' => 'path', 'type' => 'integer', 'required' => true, ], 'x' => [ 'location' => 'path', 'type' => 'integer', 'required' => true, ], 'y' => [ 'location' => 'path', 'type' => 'integer', 'required' => true, ], ], ], ] ] ); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AirQuality::class, 'Google_Service_AirQuality');