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, nullable) RadarCoordinate *location;

    Swift

    var location: RadarCoordinate? { 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 }
  • The country of the learned location. May be nil if country is not available or if regions are not enabled.

    Declaration

    Objective-C

    @property (readonly, strong, nonatomic, nullable) RadarRegion *country;

    Swift

    var country: RadarRegion? { get }
  • The state of the learned location. May be nil if state is not available or if regions are not enabled.

    Declaration

    Objective-C

    @property (readonly, strong, nonatomic, nullable) RadarRegion *state;

    Swift

    var state: RadarRegion? { get }
  • dma

    The DMA of the learned location. May be nil if DMA is not available or if regions are not enabled.

    Declaration

    Objective-C

    @property (readonly, strong, nonatomic, nullable) RadarRegion *dma;

    Swift

    var dma: RadarRegion? { get }
  • The postal code of the learned location. May be nil if postal code is not available or if regions are not enabled.

    Declaration

    Objective-C

    @property (readonly, strong, nonatomic, nullable) RadarRegion *postalCode;

    Swift

    var postalCode: RadarRegion? { get }