NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatFetchCommentsByMsgIdsParam.h
浏览该文件的文档.
1//
2// NIMQChatFetchQuickCommentsByMsgIdsParam.h
3// NIMLib
4//
5// Created by Evang on 2022/3/21.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
14
15/**
16 * 服务器id
17 */
18@property (nonatomic, assign) unsigned long long serverId;
19
20/**
21 * 频道id
22 */
23@property (nonatomic, assign) unsigned long long channelId;
24
25/**
26 * 消息id数组,目标消息的serverId, 一次最多10条
27 */
28@property (nonatomic, copy) NSArray *msgServerIdArray;
29
30@end
31
32NS_ASSUME_NONNULL_END
Definition: NIMQChatFetchCommentsByMsgIdsParam.h:14
unsigned long long serverId
Definition: NIMQChatFetchCommentsByMsgIdsParam.h:18
unsigned long long channelId
Definition: NIMQChatFetchCommentsByMsgIdsParam.h:23
NSArray * msgServerIdArray
Definition: NIMQChatFetchCommentsByMsgIdsParam.h:28