NIMBatchDeleteMessagesOption.h 621 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // NIMBatchDeleteMessagesOption.h
  3. // NIMLib
  4. //
  5. // Created by He on 2019/6/25.
  6. // Copyright © 2019 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /**
  11. * 批量删除本地消息选项
  12. */
  13. @interface NIMBatchDeleteMessagesOption : NSObject
  14. /**
  15. * 起始时间, 默认 0, 单位s
  16. * @discussion 小于等于0表示之前全部消息
  17. */
  18. @property(nonatomic,assign) NSTimeInterval start;
  19. /**
  20. * 截止时间, 默认 0, 单位s
  21. * @discussion 小于等于0表示当前时间
  22. */
  23. @property(nonatomic,assign) NSTimeInterval end;
  24. @end
  25. NS_ASSUME_NONNULL_END