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

Pollutant

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

Data regarding an air quality pollutant.

interface Pollutant {
additionalInfo?: AdditionalInfo;
code?: string;
concentration?: Concentration;
displayName?: string;
fullName?: string;
}

§Properties

§
additionalInfo?: AdditionalInfo
[src]

Additional information about the pollutant.

§
code?: string
[src]

The pollutant's code name (for example, "so2"). For a list of supported pollutant codes, see Reported pollutants.

§
concentration?: Concentration
[src]

The pollutant's concentration level measured by one of the standard air pollutation measure units.

§
displayName?: string
[src]

The pollutant's display name. For example: "NOx".

§
fullName?: string
[src]

The pollutant's full name. For chemical compounds, this is the IUPAC name. Example: "Sulfur Dioxide". For more information about the IUPAC names table, see https://iupac.org/what-we-do/periodic-table-of-elements/.