RadarUserInsightsState

@interface RadarUserInsightsState : NSObject

Represents the learned home, work, and traveling state of the current user. For more information about Insights, see https://radar.io/documentation/insights.

  • A boolean indicating whether the user is at home, based on learned home location.

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) BOOL home;

    Swift

    var home: Bool { get }
  • A boolean indicating whether the user is at the office, based on learned office location.

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) BOOL office;

    Swift

    var office: Bool { get }
  • A boolean indicating whether the user is traveling, based on learned home location.

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) BOOL traveling;

    Swift

    var traveling: Bool { get }