// // NIMQChatGetMessageCacheResult.h // NIMSDK // // Created by Netease. // Copyright © 2022 Netease. All rights reserved. // #import @class NIMQChatMessage; @class NIMQChatMessageQuickCommentInfo; NS_ASSUME_NONNULL_BEGIN /** * 拉取聊天消息的回调类型 */ @interface NIMQChatGetMessageCacheResult : NSObject /** * 查询结果 */ @property (nullable, nonatomic, copy) NSArray *messages; /** * 查询结果引用到的消息 * @discussion key为消息的messageId。根据返回的消息的replyRefer或threadRefer中的messageId查询 */ @property (nullable, nonatomic, copy) NSDictionary *messagesRefered; /** * 查询结果的快捷评论 * @discussion key为消息的serverID */ @property (nullable, nonatomic, copy) NSDictionary *comments; @end NS_ASSUME_NONNULL_END