2025-06-16 16:19:18 +02:00
|
|
|
package types
|
|
|
|
|
|
|
|
|
|
// The Metrics data type, representing the humidity, pressure and
|
|
|
|
|
// similar miscellaneous values
|
|
|
|
|
type Metrics struct {
|
|
|
|
|
Humidity string `json:"humidity"`
|
|
|
|
|
Pressure string `json:"pressure"`
|
|
|
|
|
DewPoint string `json:"dewPoint"`
|
2025-06-17 12:05:58 +02:00
|
|
|
UvIndex string `json:"uvIndex"`
|
2025-06-16 16:19:18 +02:00
|
|
|
Visibility string `json:"visibility"`
|
|
|
|
|
}
|