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

PlantDescription

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

Contains general information about plants, including details on their seasonality, special shapes and colors, information about allergic cross-reactions, and plant photos.

interface PlantDescription {
crossReaction?: string;
family?: string;
picture?: string;
pictureCloseup?: string;
season?: string;
specialColors?: string;
specialShapes?: string;
type?:
| "POLLEN_TYPE_UNSPECIFIED"
| "GRASS"
| "TREE"
| "WEED";
}

§Properties

§
crossReaction?: string
[src]

Textual description of pollen cross reaction plants. Example: Alder, Hazel, Hornbeam, Beech, Willow, and Oak pollen.

§
family?: string
[src]

A human readable representation of the plant family name. Example: "Betulaceae (the Birch family)".

§
picture?: string
[src]

Link to the picture of the plant.

§
pictureCloseup?: string
[src]

Link to a closeup picture of the plant.

§
season?: string
[src]

Textual list of explanations of seasons where the pollen is active. Example: "Late winter, spring".

§
specialColors?: string
[src]

Textual description of the plants' colors of leaves, bark, flowers or seeds that helps identify the plant.

§
specialShapes?: string
[src]

Textual description of the plants' shapes of leaves, bark, flowers or seeds that helps identify the plant.

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

The plant's pollen type. For example: "GRASS". A list of all available codes could be found here.