NIMSessionDeleteAllRemoteMessagesInfo.h 619 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // NIMSessionDeleteAllRemoteMessagesInfo.h
  3. // NIMLib
  4. //
  5. // Created by Wenchao Ding on 2020/9/1.
  6. // Copyright © 2020 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class NIMSession;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface NIMSessionDeleteAllRemoteMessagesInfo : NSObject
  12. /**
  13. * 会话
  14. */
  15. @property (nonatomic, copy) NIMSession *session;
  16. /**
  17. * 消息发送方accid
  18. */
  19. @property (nonatomic, copy) NSString *fromAccid;
  20. /**
  21. * 删除时间(ms)
  22. */
  23. @property (nonatomic, assign) uint64_t time;
  24. /**
  25. * 扩展字段
  26. */
  27. @property (nonatomic, copy) NSString *ext;
  28. @end
  29. NS_ASSUME_NONNULL_END