2025-06-16 16:19:18 +02:00
|
|
|
package types
|
|
|
|
|
|
2025-06-17 17:38:31 +02:00
|
|
|
// The Weather data type, representing the weather of a certain location
|
2025-06-16 16:19:18 +02:00
|
|
|
type Weather struct {
|
2025-06-18 10:44:19 +02:00
|
|
|
Date ZephyrDate `json:"date"`
|
|
|
|
|
Temperature string `json:"temperature"`
|
2025-07-31 16:06:57 +02:00
|
|
|
Min string `json:"min"`
|
|
|
|
|
Max string `json:"max"`
|
2025-06-18 10:44:19 +02:00
|
|
|
Condition string `json:"condition"`
|
|
|
|
|
FeelsLike string `json:"feelsLike"`
|
|
|
|
|
Emoji string `json:"emoji"`
|
2025-06-16 16:19:18 +02:00
|
|
|
}
|