NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatAreMentionedMeMessagesParam.h
浏览该文件的文档.
1
2
3//
4// NIMQChatAreMentionedMeMessagesParam.h
5// NIMSDK
6//
7// Created by Netease.
8// Copyright © 2022 Netease. All rights reserved.
9//
10
11#import <Foundation/Foundation.h>
12#import "NIMQChatDefs.h"
13
14NS_ASSUME_NONNULL_BEGIN
15
16@class NIMQChatMessage;
17
18/**
19 * 批量查询消息是否 @ 当前用户的参数
20 */
22
23/**
24 * 要查询的圈组消息数组
25 */
26@property (nonatomic, copy)NSArray<NIMQChatMessage *> *messages;
27
28@end
29
30
31NS_ASSUME_NONNULL_END
32
33
Definition: NIMQChatAreMentionedMeMessagesParam.h:22
NSArray< NIMQChatMessage * > * messages
Definition: NIMQChatAreMentionedMeMessagesParam.h:26
Definition: NIMQChatMessage.h:76