NIMSessionDeleteAllRemoteMessagesOptions.h 499 B

123456789101112131415161718192021222324252627
  1. //
  2. // NIMSessionDeleteAllRemoteMessagesOptions.h
  3. // NIMLib
  4. //
  5. // Created by Wenchao Ding on 2020/8/25.
  6. // Copyright © 2020 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NIMSessionDeleteAllRemoteMessagesOptions : NSObject
  11. /**
  12. * 是否同时清空其他登录设备,默认为NO
  13. */
  14. @property (nonatomic,assign) BOOL removeOtherClients;
  15. /**
  16. * 扩展字段
  17. */
  18. @property (nonatomic,copy) NSString *ext;
  19. @end
  20. NS_ASSUME_NONNULL_END