NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatAreMentionedMeMessagesResult.h
浏览该文件的文档.
1
2
3//
4// NIMQChatAreMentionedMeMessagesResult.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
15/**
16 * 批量查询消息是否 @ 当前用户的结果
17 */
19
20/**
21 * 查询到的数据 消息 key:uuid value:YES/NO
22 */
23@property (nullable, nonatomic, copy)NSDictionary<NSString *,NSNumber*> *result;
24
25
26
27@end
28
29
30NS_ASSUME_NONNULL_END
31
32
Definition: NIMQChatAreMentionedMeMessagesResult.h:19
NSDictionary< NSString *, NSNumber * > * result
Definition: NIMQChatAreMentionedMeMessagesResult.h:23