Class Color
- Namespace
- GoogleMapsApi.Entities.Pollen.Response
- Assembly
- GoogleMapsApi.dll
An RGBA colour with components in the range [0, 1] (mirrors google.type.Color).
public sealed class Color
- Inheritance
-
Color
- Inherited Members
Properties
Alpha
Alpha (opacity), in the range [0, 1]. Often omitted, meaning fully opaque.
[JsonPropertyName("alpha")]
public float? Alpha { get; set; }
Property Value
Blue
Blue component, in the range [0, 1].
[JsonPropertyName("blue")]
public float? Blue { get; set; }
Property Value
Green
Green component, in the range [0, 1].
[JsonPropertyName("green")]
public float? Green { get; set; }
Property Value
Red
Red component, in the range [0, 1].
[JsonPropertyName("red")]
public float? Red { get; set; }