NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGetMentionedMeMessagesResult.h
浏览该文件的文档.
1//
2// NIMQChatGetMentionedMeMessagesResult.h
3// NIMSDK
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13 @class NIMQChatMessage;
14
15/**
16 * 分页查询 @ 我的圈组消息的结果
17 */
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@end
41
42
43NS_ASSUME_NONNULL_END
44
45
Definition: NIMQChatGetMentionedMeMessagesResult.h:19
NSString * cursor
Definition: NIMQChatGetMentionedMeMessagesResult.h:33
BOOL hasMore
Definition: NIMQChatGetMentionedMeMessagesResult.h:23
NSTimeInterval nextTimetag
Definition: NIMQChatGetMentionedMeMessagesResult.h:28
NSArray< NIMQChatMessage * > * messages
Definition: NIMQChatGetMentionedMeMessagesResult.h:38
Definition: NIMQChatMessage.h:76