NIMDeleteRecentSessionOption.h 757 B

12345678910111213141516171819202122232425262728
  1. //
  2. // NIMDeleteRecentSessionOption.h
  3. // NIMSDK
  4. //
  5. // Created by I am Groot on 2020/12/6.
  6. // Copyright © 2020 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NIMDeleteRecentSessionOption : NSObject
  11. /**
  12. * 是否移除该会话的服务端漫游消息
  13. * @discussion ,默认为 NO,仅删除本地会话;为YES,将同时删除服务端漫游消息
  14. */
  15. @property (nonatomic,assign) BOOL isDeleteRoamMessage;
  16. /**
  17. * 是否标记会话中所有消息已读
  18. * @discussion ,默认为为 NO,仅删除本地会话;为YES,将同时标记会话中所有消息为已读
  19. */
  20. @property (nonatomic,assign) BOOL shouldMarkAllMessagesReadInSessions;
  21. @end
  22. NS_ASSUME_NONNULL_END