Table of Contents

Class ForecastResponse

Namespace
GoogleMapsApi.Entities.AirQuality.Response
Assembly
GoogleMapsApi.dll

Response from the Air Quality API forecast:lookup endpoint.

public sealed class ForecastResponse : IResponseFor<ForecastRequest>
Inheritance
ForecastResponse
Implements
Inherited Members

Properties

HourlyForecasts

The forecast hours requested, one entry per hour.

[JsonPropertyName("hourlyForecasts")]
public List<HourlyForecast>? HourlyForecasts { get; set; }

Property Value

List<HourlyForecast>

NextPageToken

Token to pass as PageToken on a follow-up request to fetch the next page, if any.

[JsonPropertyName("nextPageToken")]
public string? NextPageToken { get; set; }

Property Value

string

RegionCode

Region code (ISO 3166-1 alpha-2) of the location.

[JsonPropertyName("regionCode")]
public string? RegionCode { get; set; }

Property Value

string