RadarUserInsightsLocation
@interface RadarUserInsightsLocation : NSObject
Represents a learned home or work location. For more information about Insights, see https://radar.io/documentation/insights.
-
The type of the learned location.
Declaration
Objective-C
@property (readonly, assign, nonatomic) RadarUserInsightsLocationType type;
Swift
var type: RadarUserInsightsLocationType { get }
-
The learned location.
Declaration
Objective-C
@property (readonly, strong, nonatomic, nonnull) CLLocation *location;
Swift
var location: CLLocation { get }
-
The confidence level of the learned location.
Declaration
Objective-C
@property (readonly, assign, nonatomic) RadarUserInsightsLocationConfidence confidence;
Swift
var confidence: RadarUserInsightsLocationConfidence { get }
-
The datetime when the learned location was updated.
Declaration
Objective-C
@property (readonly, copy, nonatomic, nonnull) NSDate *updatedAt;
Swift
var updatedAt: Date { get }