RadarUserInsights
@interface RadarUserInsights : NSObject
Represents the learned home, work, and traveling state and locations of the current user. For more information about Insights, see https://radar.io/documentation/insights.
-
The learned home location of the user. May be
nil
if not yet learned, or if Insights is turned off.Declaration
Objective-C
@property (readonly, strong, nonatomic, nullable) RadarUserInsightsLocation *homeLocation;
Swift
var homeLocation: RadarUserInsightsLocation? { get }
-
The learned office location of the user. May be
nil
if not yet learned, or if Insights is turned off.Declaration
Objective-C
@property (readonly, strong, nonatomic, nullable) RadarUserInsightsLocation *officeLocation;
Swift
var officeLocation: RadarUserInsightsLocation? { get }
-
The state of the user, based on learned home and office locations.
Declaration
Objective-C
@property (readonly, strong, nonatomic, nonnull) RadarUserInsightsState *state;
Swift
var state: RadarUserInsightsState { get }