NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGetMessageCacheParam.h
浏览该文件的文档.
1//
2// NIMQChatGetMessageCacheParam.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/**
14 * 从本地缓存查询消息的参数类型
15 */
16@interface NIMQChatGetMessageCacheParam : NSObject
17
18/**
19 * 圈组服务器ID
20 */
21@property(nonatomic, assign) unsigned long long serverId;
22
23/**
24 * 圈组频道ID
25 */
26@property(nonatomic, assign) unsigned long long channelId;
27
28/**
29 * 是否需要返回引用的消息
30 */
31@property(nonatomic, assign) BOOL withRefer;
32
33/**
34 * 是否需要返回快捷评论
35 */
36@property(nonatomic, assign) BOOL withQuickComment;
37
38@end
39
40NS_ASSUME_NONNULL_END
Definition: NIMQChatGetMessageCacheParam.h:17
unsigned long long channelId
Definition: NIMQChatGetMessageCacheParam.h:26
BOOL withQuickComment
Definition: NIMQChatGetMessageCacheParam.h:36
unsigned long long serverId
Definition: NIMQChatGetMessageCacheParam.h:21
BOOL withRefer
Definition: NIMQChatGetMessageCacheParam.h:31