NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGetInviteApplyRecordOfServerParam.h
浏览该文件的文档.
1//
2// NIMQChatRevokeMessageParam.h
3// NIMSDK
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11@class NIMQChatMessage;
13
14NS_ASSUME_NONNULL_BEGIN
15
16/**
17 * 查询服务器下的申请邀请记录的参数
18 */
19@interface NIMQChatGetInviteApplyRecordOfServerParam : NSObject <NSCopying>
20
21/**
22 * 服务器ID
23 */
24@property(nonatomic, assign) unsigned long long serverId;
25/**
26 * 开始时间(秒),NSTimeInterval
27 */
28@property(nullable, nonatomic, copy)NSNumber *fromTime;
29/**
30 * 结束时间(秒),NSTimeInterval
31 */
32@property(nullable, nonatomic, copy)NSNumber *toTime;
33/**
34 * 是否逆序,同历史消息查询,默认从现在查到过去,BOOL
35 */
36@property(nullable, nonatomic, copy)NSNumber *reverse;
37/**
38 * 最大数量限制,默认100,最大100,NSUInteger
39 */
40@property(nullable, nonatomic, copy)NSNumber *limit;
41/**
42 * 排除id,long
43 */
44@property(nullable, nonatomic, copy)NSNumber *excludeRecordId;
45
46@end
47
48NS_ASSUME_NONNULL_END
Definition: NIMQChatGetInviteApplyRecordOfServerParam.h:19
unsigned long long serverId
Definition: NIMQChatGetInviteApplyRecordOfServerParam.h:24
NSNumber * fromTime
Definition: NIMQChatGetInviteApplyRecordOfServerParam.h:28
NSNumber * excludeRecordId
Definition: NIMQChatGetInviteApplyRecordOfServerParam.h:44
NSNumber * toTime
Definition: NIMQChatGetInviteApplyRecordOfServerParam.h:32
NSNumber * reverse
Definition: NIMQChatGetInviteApplyRecordOfServerParam.h:36
NSNumber * limit
Definition: NIMQChatGetInviteApplyRecordOfServerParam.h:40
Definition: NIMQChatMessage.h:76
Definition: NIMQChatUpdateParam.h:13