Class Pollutant
- Namespace
- GoogleMapsApi.Entities.AirQuality.Response
- Assembly
- GoogleMapsApi.dll
Data for a single pollutant (returned with the pollutant-concentration extra computations).
public sealed class Pollutant
- Inheritance
-
Pollutant
- Inherited Members
Properties
AdditionalInfo
Supplementary sources/effects information for this pollutant.
[JsonPropertyName("additionalInfo")]
public AdditionalInfo? AdditionalInfo { get; set; }
Property Value
Code
The pollutant's code (e.g. "pm25", "no2").
[JsonPropertyName("code")]
public string? Code { get; set; }
Property Value
Concentration
The measured concentration.
[JsonPropertyName("concentration")]
public Concentration? Concentration { get; set; }
Property Value
DisplayName
The pollutant's short display name (e.g. "PM2.5").
[JsonPropertyName("displayName")]
public string? DisplayName { get; set; }
Property Value
FullName
The pollutant's full name (e.g. "Fine particulate matter (<2.5µm)").
[JsonPropertyName("fullName")]
public string? FullName { get; set; }