Table of Contents

Class PollenTypeInfo

Namespace
GoogleMapsApi.Entities.Pollen.Response
Assembly
GoogleMapsApi.dll

Pollen information for one pollen type (grass, tree or weed) on a given day.

public sealed class PollenTypeInfo
Inheritance
PollenTypeInfo
Inherited Members

Properties

Code

The pollen type code ("GRASS", "TREE" or "WEED").

[JsonPropertyName("code")]
public string? Code { get; set; }

Property Value

string

DisplayName

Human-readable pollen type name (e.g. "Grass").

[JsonPropertyName("displayName")]
public string? DisplayName { get; set; }

Property Value

string

HealthRecommendations

Health recommendations related to this pollen type.

[JsonPropertyName("healthRecommendations")]
public List<string>? HealthRecommendations { get; set; }

Property Value

List<string>

InSeason

Whether the pollen type is in season on this day.

[JsonPropertyName("inSeason")]
public bool? InSeason { get; set; }

Property Value

bool?

IndexInfo

The pollen index for this type. Absent when no data is available.

[JsonPropertyName("indexInfo")]
public IndexInfo? IndexInfo { get; set; }

Property Value

IndexInfo