RadarRegion
Objective-C
@interface RadarRegion : NSObject
Swift
class RadarRegion : NSObject
Represents a region.
-
The Radar ID of the region.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nonnull) NSString *_id;
Swift
var _id: String { get }
-
The name of the region.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nonnull) NSString *name;
Swift
var name: String { get }
-
The unique code for the region.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nonnull) NSString *code;
Swift
var code: String { get }
-
The type of the region.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nonnull) NSString *type;
Swift
var type: String { get }
-
The optional flag of the region.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *flag;
Swift
var flag: String? { get }