RadarPoint
@interface RadarPoint : NSObject
Represents a point. For more information about Points, see https://radar.io/documentation/points.
-
The Radar ID of the point.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull _id;
Swift
var _id: String { get }
-
The description of the point. Not to be confused with the
NSObject
description
property.Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull _description;
Swift
var _description: String { get }
-
The tag of the point.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *tag;
Swift
var tag: String? { get }
-
The external ID of the point.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *externalId;
Swift
var externalId: String? { get }
-
The optional set of custom key-value pairs for the point.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSDictionary *metadata;
Swift
var metadata: [AnyHashable : Any]? { get }
-
The location of the point.
Declaration
Objective-C
@property (nonatomic, readonly) RadarCoordinate *_Nonnull location;
Swift
var location: RadarCoordinate { get }