NIMSDK-iOS
载入中...
搜索中...
未找到
NIMCollectInfo.h
浏览该文件的文档.
1//
2// NIMCollectInfo.h
3// NIMLib
4//
5// Created by 丁文超 on 2020/3/30.
6// Copyright © 2020 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13@interface NIMCollectInfo : NSObject
14
15/**
16 * 收藏项id
17 */
18@property (nonatomic, assign) NSUInteger id;
19
20/**
21 * 收藏类型
22 */
23@property (nonatomic, assign) NSInteger type;
24
25/**
26 * 数据,最大20KB
27 */
28@property (nonatomic, copy) NSString *data;
29
30/**
31 * 扩展字段,最大1KB
32 */
33@property (nonatomic, copy) NSString *ext;
34
35/**
36 * 去重唯一ID
37 */
38@property (nonatomic, copy) NSString *uniqueId;
39
40/**
41 * 创建时间(s)
42 */
43@property (nonatomic, assign) NSTimeInterval createTime;
44
45/**
46 * 更新时间(s)
47 */
48@property (nonatomic, assign) NSTimeInterval updateTime;
49
50@end
51
52NS_ASSUME_NONNULL_END
Definition: NIMCollectInfo.h:14
NSTimeInterval createTime
Definition: NIMCollectInfo.h:43
NSString * uniqueId
Definition: NIMCollectInfo.h:38
NSString * data
Definition: NIMCollectInfo.h:28
NSString * ext
Definition: NIMCollectInfo.h:33
NSInteger type
Definition: NIMCollectInfo.h:23
NSTimeInterval updateTime
Definition: NIMCollectInfo.h:48