-
Beaconスポットコード
Declaration
Objective-C
@property (nonatomic, nullable) NSString *code;Swift
var code: String? { get set } -
Beaconスポット名
Declaration
Objective-C
@property (nonatomic, nullable) NSString *name;Swift
var name: String? { get set } -
略名称
Declaration
Objective-C
@property (nonatomic, nullable) NSString *short_name;Swift
var short_name: String? { get set } -
ビーコンコード
Warning
検索条件タイプは RKZSearchConditionLikeOr のみ指定可能です。Declaration
Objective-C
@property (nonatomic, nullable) NSArray<NSString *> *beacon_code;Swift
var beacon_code: [String]? { get set } -
検知距離iPhone用(RSSi)
Declaration
Objective-C
@property (nonatomic, nullable) NSNumber *beacon_range_for_iphone;Swift
var beacon_range_for_iphone: NSNumber? { get set } -
検知距離Android用(RSSi)
Declaration
Objective-C
@property (nonatomic, nullable) NSNumber *beacon_range_for_android;Swift
var beacon_range_for_android: NSNumber? { get set } -
並び順
Declaration
Objective-C
@property (nonatomic, nullable) NSNumber *sort_no;Swift
var sort_no: NSNumber? { get set } -
利用不可フラグ
Declaration
Objective-C
@property (nonatomic) BOOL not_use_flg;Swift
var not_use_flg: Bool { get set } -
ビーコン情報
Declaration
Objective-C
@property (nonatomic, nullable) NSArray<RKZBeaconData *> *beaconDataArray;Swift
var beaconDataArray: [RKZBeaconData]? { get set } -
自由項目
Declaration
Objective-C
@property (nonatomic, nullable) NSDictionary<NSString *, id> *attributes;Swift
var attributes: [String : Any]? { get set }
-
指定イニシャライザ
Declaration
Objective-C
+ (nonnull instancetype)initWithResultSet:(nonnull NSDictionary *)rs;Swift
class func initWithResultSet(_ rs: [AnyHashable : Any]) -> SelfParameters
rs変数名に対応したKeyを持つ連想配列
Return Value
id 初期化を行ったモデル情報
View on GitHub