RadarGeofence

@interface RadarGeofence : NSObject

Represents a geofence. For more information about Geofences, see https://radar.io/documentation/geofences.

  • _id

    The Radar ID of the geofence.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nonnull) NSString *_id;

    Swift

    var _id: String { get }
  • The description of the geofence. Not to be confused with the NSObject description property.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nonnull) NSString *_description;

    Swift

    var _description: String { get }
  • tag

    The tag of the geofence.

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

    @property (readonly, strong, nonatomic, nonnull) RadarGeofenceGeometry *geometry;

    Swift

    var geometry: RadarGeofenceGeometry { get }