NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGetMentionedMeMessagesParam.h
浏览该文件的文档.
1
2
3//
4// NIMQChatGetMentionedMeMessagesParam.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/**
17 * 分页搜索圈组 @ 我的消息的参数
18 */
20
21/**
22 * 服务器id
23 */
24@property (nonatomic, assign) unsigned long long serverId;
25
26/**
27 * 频道id
28 */
29@property (nonatomic, assign) unsigned long long channelId;
30
31/**
32 * 查询时间范围 currentTime~上次ackTime,可选
33 */
34@property (nonatomic, assign) NSTimeInterval timetag;
35
36/**
37 * 查询数量,可选,默认200
38 */
39@property (nonatomic, assign) NSInteger limit;
40
41@end
42
43
44NS_ASSUME_NONNULL_END
45
46
Definition: NIMQChatGetMentionedMeMessagesParam.h:20
unsigned long long channelId
Definition: NIMQChatGetMentionedMeMessagesParam.h:29
NSTimeInterval timetag
Definition: NIMQChatGetMentionedMeMessagesParam.h:34
unsigned long long serverId
Definition: NIMQChatGetMentionedMeMessagesParam.h:24
NSInteger limit
Definition: NIMQChatGetMentionedMeMessagesParam.h:39