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-17 10:11:10 +02:00
|
|
|
Date *ZephyrDate `json:"date"`
|
|
|
|
|
Temperature string `json:"temperature"`
|
|
|
|
|
Condition string `json:"condition"`
|
|
|
|
|
FeelsLike string `json:"feelsLike"`
|
|
|
|
|
Emoji string `json:"emoji"`
|
2025-06-16 16:19:18 +02:00
|
|
|
}
|