-
ニュース配信元テナントID
Declaration
Objective-C
@property (nonatomic, nullable) NSString *news_tenant_id;
Swift
var news_tenant_id: String? { get set }
-
ニュースID
Declaration
Objective-C
@property (nonatomic, nullable) NSString *news_id;
Swift
var news_id: String? { get set }
-
既読フラグ
Declaration
Objective-C
@property (nonatomic) BOOL read_flg;
Swift
var read_flg: Bool { get set }
-
既読日時
Declaration
Objective-C
@property (nonatomic, nullable) NSDate *read_date;
Swift
var read_date: Date? { 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) 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]) -> Self
Parameters
rs
変数名に対応したKeyを持つ連想配列
Return Value
id 初期化を行ったモデル情報