38 lines
582 B
Objective-C
38 lines
582 B
Objective-C
//
|
||
// NIMAddCollectParams.h
|
||
// NIMLib
|
||
//
|
||
// Created by 丁文超 on 2020/4/1.
|
||
// Copyright © 2020 Netease. All rights reserved.
|
||
//
|
||
|
||
#import <Foundation/Foundation.h>
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface NIMAddCollectParams : NSObject
|
||
|
||
/**
|
||
* 收藏类型, > 0的类型
|
||
*/
|
||
@property (nonatomic, assign) NSInteger type;
|
||
|
||
/**
|
||
* 数据,最大20KB
|
||
*/
|
||
@property (nonatomic, copy) NSString *data;
|
||
|
||
/**
|
||
* 扩展字段,最大1KB
|
||
*/
|
||
@property (nonatomic, copy) NSString *ext;
|
||
|
||
/**
|
||
* 去重唯一ID
|
||
*/
|
||
@property (nonatomic, copy) NSString *uniqueId;
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|