RadarRegion

@interface RadarRegion : NSObject

Represents a region. For more information about Regions, see https://radar.io/documentation/regions.

  • _id

    The Radar ID of the region.

    Declaration

    Objective-C

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

    Swift

    var _id: String { get }
  • The name of the region.

    Declaration

    Objective-C

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

    Swift

    var name: String { get }
  • The unique code for the region.

    Declaration

    Objective-C

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

    Swift

    var code: String { get }
  • The type of the region.

    Declaration

    Objective-C

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

    Swift

    var type: String { get }
  • The (optional) flag of the region.

    Declaration

    Objective-C

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

    Swift

    var flag: String? { get }