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

ForecastLookupOptions

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

Additional options for Pollen#forecastLookup.

interface ForecastLookupOptions {
days?: number;
languageCode?: string;
[location.latitude]?: number;
[location.longitude]?: number;
pageSize?: number;
pageToken?: string;
plantsDescription?: boolean;
}

§Properties

§
days?: number
[src]

Required. A number that indicates how many forecast days to request (minimum value 1, maximum value is 5).

§
languageCode?: string
[src]

Optional. Allows the client to choose the language for the response. If data cannot be provided for that language, the API uses the closest match. Allowed values rely on the IETF BCP-47 standard. The default value is "en".

§
[location.latitude]?: number
[src]

The latitude in degrees. It must be in the range [-90.0, +90.0].

§
[location.longitude]?: number
[src]

The longitude in degrees. It must be in the range [-180.0, +180.0].

§
pageSize?: number
[src]

Optional. The maximum number of daily info records to return per page. The default and max value is 5, indicating 5 days of data.

§
pageToken?: string
[src]

Optional. A page token received from a previous daily call. It is used to retrieve the subsequent page. Note that when providing a value for the page token, all other request parameters provided must match the previous call that provided the page token.

§
plantsDescription?: boolean
[src]

Optional. Contains general information about plants, including details on their seasonality, special shapes and colors, information about allergic cross-reactions, and plant photos. The default value is "true".