AgoraChatSDK 1.14.0
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 __deprecated_msg("Use fromIds instead");
23
25@property (nonatomic,strong) NSArray<NSString*>* _Nullable fromIds;
26
28@property (nonatomic,strong) NSArray<NSNumber*>* _Nullable msgTypes;
29
31@property (nonatomic) NSInteger startTime;
32
34@property (nonatomic) NSInteger endTime;
35
37@property (nonatomic) AgoraChatMessageSearchDirection direction;
38
40@property (nonatomic) BOOL isSave;
41
42@end
43
44NS_ASSUME_NONNULL_END
Definition: AgoraChatFetchServerMessagesOption.h:20
NSInteger endTime
Definition: AgoraChatFetchServerMessagesOption.h:34
NSString *_Nullable from __deprecated_msg("Use fromIds instead")
NSArray< NSString * > *_Nullable fromIds
Definition: AgoraChatFetchServerMessagesOption.h:25
NSArray< NSNumber * > *_Nullable msgTypes
Definition: AgoraChatFetchServerMessagesOption.h:28
NSInteger startTime
Definition: AgoraChatFetchServerMessagesOption.h:31
BOOL isSave
Definition: AgoraChatFetchServerMessagesOption.h:40
AgoraChatMessageSearchDirection direction
Definition: AgoraChatFetchServerMessagesOption.h:37