-
並び順
Declaration
Objective-C
@property (nonatomic, nullable) NSNumber *sort_no;
Swift
var sort_no: NSNumber? { get set }
-
コード
Declaration
Objective-C
@property (nonatomic, nullable) NSString *code;
Swift
var code: String? { get set }
-
名称
Declaration
Objective-C
@property (nonatomic, nullable) NSString *name;
Swift
var name: String? { get set }
-
スタンプラリーコード
Declaration
Objective-C
@property (nonatomic, nullable) NSString *stamp_rally_cd;
Swift
var stamp_rally_cd: String? { get set }
-
スタンプラリー名称
Warning
スタンプラリー名称は検索項目には指定できません。Declaration
Objective-C
@property (nonatomic, nullable) NSString *stamp_rally_name;
Swift
var stamp_rally_name: String? { 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) NSDictionary<NSString *, id> *attributes;
Swift
var attributes: [String : Any]? { get set }
-
スポット情報リスト
Declaration
Objective-C
@property (nonatomic, nullable) RKZSpotData *spot;
Swift
var spot: RKZSpotData? { get set }
-
指定イニシャライザ
Declaration
Objective-C
+ (nonnull instancetype)initWithResultSet:(nonnull NSDictionary *)rs;
Swift
class func initWithResultSet(_ rs: [AnyHashable : Any]) -> Self
Parameters
rs
変数名に対応したKeyを持つ連想配列
Return Value
id 初期化を行ったモデル情報