NIMSDK-iOS
载入中...
搜索中...
未找到
NIMBatchDeleteMessagesOption.h
浏览该文件的文档.
1//
2// NIMBatchDeleteMessagesOption.h
3// NIMLib
4//
5// Created by He on 2019/6/25.
6// Copyright © 2019 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13/**
14 * 批量删除本地消息选项
15 */
16@interface NIMBatchDeleteMessagesOption : NSObject
17
18/**
19 * 起始时间, 默认 0, 单位s
20 * @discussion 小于等于0表示之前全部消息
21 */
22@property(nonatomic,assign) NSTimeInterval start;
23
24/**
25 * 截止时间, 默认 0, 单位s
26 * @discussion 小于等于0表示当前时间
27 */
28@property(nonatomic,assign) NSTimeInterval end;
29
30@end
31
32NS_ASSUME_NONNULL_END
Definition: NIMBatchDeleteMessagesOption.h:17
NSTimeInterval start
Definition: NIMBatchDeleteMessagesOption.h:22
NSTimeInterval end
Definition: NIMBatchDeleteMessagesOption.h:28