AgoraChatSDK 1.3.1
AgoraChatFetchServerMessagesOption.h
1//
2// AgoraChatFetchServerMessagesOption.h
3// AgoraChat
4//
5// Created by li xiaoming on 2023/4/10.
6// Copyright © 2023 easemob.com. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import "AgoraChatConversation.h"
11
12NS_ASSUME_NONNULL_BEGIN
13
20
22@property (nonatomic,strong) NSString* _Nullable from;
23
25@property (nonatomic,strong) NSArray<NSNumber*>* _Nullable msgTypes;
26
28@property (nonatomic) NSInteger startTime;
29
31@property (nonatomic) NSInteger endTime;
32
34@property (nonatomic) AgoraChatMessageSearchDirection direction;
35
37@property (nonatomic) BOOL isSave;
38
39@end
40
41NS_ASSUME_NONNULL_END
Definition: AgoraChatFetchServerMessagesOption.h:20
NSInteger endTime
Definition: AgoraChatFetchServerMessagesOption.h:31
NSString *_Nullable from
Definition: AgoraChatFetchServerMessagesOption.h:22
NSArray< NSNumber * > *_Nullable msgTypes
Definition: AgoraChatFetchServerMessagesOption.h:25
NSInteger startTime
Definition: AgoraChatFetchServerMessagesOption.h:28
BOOL isSave
Definition: AgoraChatFetchServerMessagesOption.h:37
AgoraChatMessageSearchDirection direction
Definition: AgoraChatFetchServerMessagesOption.h:34