Class LookupForecastResponse
The response object of the air quality forecast API.
Implements
Inherited Members
Namespace: Google.Apis.AirQuality.v1.Data
Assembly: Google.Apis.AirQuality.v1.dll
Syntax
public class LookupForecastResponse : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
HourlyForecasts
Optional. 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.
Declaration
[JsonProperty("hourlyForecasts")]
public virtual IList<HourlyForecast> HourlyForecasts { get; set; }
Property Value
Type | Description |
---|---|
IList<HourlyForecast> |
NextPageToken
Optional. The token to retrieve the next page.
Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
RegionCode
Optional. The ISO_3166-1 alpha-2 code of the country/region corresponding to the location provided in the request. This field might be omitted from the response if the location provided in the request resides in a disputed territory.
Declaration
[JsonProperty("regionCode")]
public virtual string RegionCode { get; set; }
Property Value
Type | Description |
---|---|
string |