RadarPoint

@interface RadarPoint : NSObject

Represents a point. For more information about Points, see https://radar.io/documentation/points.

  • _id

    The Radar ID of the point.

    Declaration

    Objective-C

    @property (readonly, nonatomic) 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 (readonly, nonatomic) NSString *_Nonnull _description;

    Swift

    var _description: String { get }
  • tag

    The tag of the point.

    Declaration

    Objective-C

    @property (readonly, nonatomic, nullable) NSString *tag;

    Swift

    var tag: String? { get }
  • The external ID of the point.

    Declaration

    Objective-C

    @property (readonly, nonatomic, nullable) NSString *externalId;

    Swift

    var externalId: String? { get }
  • The optional set of custom key-value pairs for the point.

    Declaration

    Objective-C

    @property (readonly, nonatomic, nullable) NSDictionary *metadata;

    Swift

    var metadata: [AnyHashable : Any]? { get }
  • The location of the point.

    Declaration

    Objective-C

    @property (readonly, nonatomic) RadarCoordinate *_Nonnull location;

    Swift

    var location: RadarCoordinate { get }