Show / Hide Table of Contents

Class HourlyForecast

Contains the air quality information for each hour in the requested range. For example, if the request is for 48 hours of forecast there will be 48 elements of hourly forecasts.

Inheritance
object
HourlyForecast
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.AirQuality.v1.Data
Assembly: Google.Apis.AirQuality.v1.dll
Syntax
public class HourlyForecast : IDirectResponseSchema

Properties

DateTime

object representation of DateTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use DateTimeDateTimeOffset instead.")]
public virtual object DateTime { get; set; }
Property Value
Type Description
object

DateTimeDateTimeOffset

DateTimeOffset representation of DateTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? DateTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

DateTimeRaw

A rounded down timestamp indicating the time (hour) the data refers to in RFC3339 UTC "Zulu" format. For example: "2014-10-02T15:00:00Z".

Declaration
[JsonProperty("dateTime")]
public virtual string DateTimeRaw { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

HealthRecommendations

Health advice and recommended actions related to the reported air quality conditions. Recommendations are tailored differently for populations at risk, groups with greater sensitivities to pollutants, and the general population.

Declaration
[JsonProperty("healthRecommendations")]
public virtual HealthRecommendations HealthRecommendations { get; set; }
Property Value
Type Description
HealthRecommendations

Indexes

Based on the request parameters, this list will include (up to) two air quality indexes: - Universal AQI. Will be returned if the universal_aqi boolean is set to true. - Local AQI. Will be returned if the LOCAL_AQI extra computation is specified.

Declaration
[JsonProperty("indexes")]
public virtual IList<AirQualityIndex> Indexes { get; set; }
Property Value
Type Description
IList<AirQualityIndex>

Pollutants

A list of pollutants affecting the location specified in the request. Note: This field will be returned only for requests that specified one or more of the following extra computations: POLLUTANT_ADDITIONAL_INFO, DOMINANT_POLLUTANT_CONCENTRATION, POLLUTANT_CONCENTRATION.

Declaration
[JsonProperty("pollutants")]
public virtual IList<Pollutant> Pollutants { get; set; }
Property Value
Type Description
IList<Pollutant>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX