RadarUserInsightsLocation
Objective-C
@interface RadarUserInsightsLocation : NSObject
Swift
class RadarUserInsightsLocation : NSObject
Represents a learned home or work location.
-
The type of the learned location.
Declaration
Objective-C
@property (nonatomic, readonly) RadarUserInsightsLocationType type;
Swift
var type: RadarUserInsightsLocationType { get }
-
The learned location.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nullable) RadarCoordinate *location;
Swift
var location: RadarCoordinate? { get }
-
The confidence level of the learned location.
Declaration
Objective-C
@property (nonatomic, readonly) RadarUserInsightsLocationConfidence confidence;
Swift
var confidence: RadarUserInsightsLocationConfidence { get }
-
The datetime when the learned location was updated.
Declaration
Objective-C
@property (nonatomic, copy, readonly, 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 (nonatomic, strong, readonly, 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 (nonatomic, strong, readonly, nullable) RadarRegion *state;
Swift
var state: RadarRegion? { get }
-
The DMA of the learned location. May be
nil
if DMA is not available or if regions are not enabled.Declaration
Objective-C
@property (nonatomic, strong, readonly, 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 (nonatomic, strong, readonly, nullable) RadarRegion *postalCode;
Swift
var postalCode: RadarRegion? { get }