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

PollenTypeInfo

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

This object contains the pollen type index and health recommendation information on specific pollen type.

interface PollenTypeInfo {
code?:
| "POLLEN_TYPE_UNSPECIFIED"
| "GRASS"
| "TREE"
| "WEED";
displayName?: string;
healthRecommendations?: string[];
indexInfo?: IndexInfo;
inSeason?: boolean;
}

§Properties

§
code?: "POLLEN_TYPE_UNSPECIFIED" | "GRASS" | "TREE" | "WEED"
[src]

The pollen type's code name. For example: "GRASS"

§
displayName?: string
[src]

A human readable representation of the pollen type name. Example: "Grass"

§
healthRecommendations?: string[]
[src]

Textual list of explanations, related to health insights based on the current pollen levels.

§
indexInfo?: IndexInfo
[src]

Contains the Universal Pollen Index (UPI) data for the pollen type.

§
inSeason?: boolean
[src]

Indication whether the plant is in season or not.