📂 File Browser

AgentAI/vendor/google/apiclient-services/src/AirQuality
🌙 Dark Mode
🎯 Quick Launch:

📁 Directories

📁 Resource/ 🔓 Open

📄 Files

🐘 AdditionalInfo.php
▶ Open 📄 View Source
🐘 AirQualityIndex.php
▶ Open 📄 View Source
🐘 Color.php
▶ Open 📄 View Source
🐘 Concentration.php
▶ Open 📄 View Source
🐘 CustomLocalAqi.php
▶ Open 📄 View Source
🐘 HealthRecommendations.php
▶ Open 📄 View Source
🐘 HourInfo.php
▶ Open 📄 View Source
🐘 HourlyForecast.php
▶ Open 📄 View Source
🐘 HttpBody.php
▶ Open 📄 View Source
🐘 Interval.php
▶ Open 📄 View Source
🐘 LatLng.php
▶ Open 📄 View Source
🐘 LookupCurrentConditionsRequest.php
▶ Open 📄 View Source
🐘 LookupCurrentConditionsResponse.php
▶ Open 📄 View Source
🐘 LookupForecastRequest.php
▶ Open 📄 View Source
🐘 LookupForecastResponse.php
▶ Open 📄 View Source
🐘 LookupHistoryRequest.php
▶ Open 📄 View Source
🐘 LookupHistoryResponse.php
▶ Open 📄 View Source
🐘 Pollutant.php
▶ Open 📄 View Source

📄 Source: AdditionalInfo.php

<?php
/*
 * Copyright 2014 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

namespace Google\Service\AirQuality;

class AdditionalInfo extends \Google\Model
{
  /**
   * Text representing the pollutant's main health effects.
   *
   * @var string
   */
  public $effects;
  /**
   * Text representing the pollutant's main emission sources.
   *
   * @var string
   */
  public $sources;

  /**
   * Text representing the pollutant's main health effects.
   *
   * @param string $effects
   */
  public function setEffects($effects)
  {
    $this->effects = $effects;
  }
  /**
   * @return string
   */
  public function getEffects()
  {
    return $this->effects;
  }
  /**
   * Text representing the pollutant's main emission sources.
   *
   * @param string $sources
   */
  public function setSources($sources)
  {
    $this->sources = $sources;
  }
  /**
   * @return string
   */
  public function getSources()
  {
    return $this->sources;
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(AdditionalInfo::class, 'Google_Service_AirQuality_AdditionalInfo');
← Back