NIMAddCollectParams.h 568 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // NIMAddCollectParams.h
  3. // NIMLib
  4. //
  5. // Created by 丁文超 on 2020/4/1.
  6. // Copyright © 2020 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NIMAddCollectParams : NSObject
  11. /**
  12. * 收藏类型
  13. */
  14. @property (nonatomic, assign) NSInteger type;
  15. /**
  16. * 数据,最大20KB
  17. */
  18. @property (nonatomic, copy) NSString *data;
  19. /**
  20. * 扩展字段,最大1KB
  21. */
  22. @property (nonatomic, copy) NSString *ext;
  23. /**
  24. * 去重唯一ID
  25. */
  26. @property (nonatomic, copy) NSString *uniqueId;
  27. @end
  28. NS_ASSUME_NONNULL_END