WeatherContextForecast
Objective-C
@interface WeatherContextForecast : NSObject
Swift
class WeatherContextForecast : NSObject
This class handles the weather context foecast.
-
Forecast update timestamp.
Declaration
Objective-C
@property (nonatomic, strong, nullable) TimeObject *updateTimestamp;
Swift
var updateTimestamp: TimeObject? { get set }
-
Geographic location.
Declaration
Objective-C
@property (nonatomic, strong, nullable) CoordinatesObject *coordinatesObject;
Swift
var coordinatesObject: CoordinatesObject? { get set }
-
Forecast data.
Declaration
Objective-C
@property (nonatomic, strong) WeatherContextConditions *_Nonnull conditions;
Swift
var conditions: WeatherContextConditions { get set }