NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatSearchMsgByPageResult.h
浏览该文件的文档.
1
2
3//
4// NIMQChatSearchMsgByPageResult.h
5// NIMSDK
6//
7// Created by Netease.
8// Copyright © 2022 Netease. All rights reserved.
9//
10
11#import <Foundation/Foundation.h>
12
13NS_ASSUME_NONNULL_BEGIN
14@class NIMQChatMessage;
15/**
16 * 分页查询圈组消息的结果
17 */
18@interface NIMQChatSearchMsgByPageResult : NSObject
19
20/**
21 * 是否还有下一页数据
22 */
23@property (nonatomic, assign) BOOL hasMore;
24
25/**
26 * 下一页的起始时间戳
27 */
28@property (nonatomic, assign) NSTimeInterval nextTimetag;
29
30/**
31 * 查询游标,下一次查询的起始位置
32 */
33@property(nullable, nonatomic, copy) NSString *cursor;
34
35/**
36 * 圈组消息数组
37 */
38@property (nullable, nonatomic, copy)NSArray<NIMQChatMessage *> *messages;
39
40
41
42@end
43
44
45NS_ASSUME_NONNULL_END
46
47
Definition: NIMQChatMessage.h:76
Definition: NIMQChatSearchMsgByPageResult.h:19
NSTimeInterval nextTimetag
Definition: NIMQChatSearchMsgByPageResult.h:28
BOOL hasMore
Definition: NIMQChatSearchMsgByPageResult.h:23
NSString * cursor
Definition: NIMQChatSearchMsgByPageResult.h:33
NSArray< NIMQChatMessage * > * messages
Definition: NIMQChatSearchMsgByPageResult.h:38