Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LookupForecastResponse

import type { LookupForecastResponse } from "https://googleapis.deno.dev/v1/airquality:v1.ts";

The response object of the air quality forecast API.

interface LookupForecastResponse {
hourlyForecasts?: HourlyForecast[];
nextPageToken?: string;
regionCode?: string;
}

§Properties

§
hourlyForecasts?: HourlyForecast[]
[src]

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.

§
nextPageToken?: string
[src]

Optional. The token to retrieve the next page.

§
regionCode?: string
[src]

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.