NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGetInviteApplyRecordOfSelfParam.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 NIMQChatGetInviteApplyRecordOfSelfParam : NSObject <NSCopying>
20
21/**
22 * 开始时间(秒),NSTimeInterval
23 */
24@property(nullable, nonatomic, copy)NSNumber *fromTime;
25/**
26 * 结束时间(秒),NSTimeInterval
27 */
28@property(nullable, nonatomic, copy)NSNumber *toTime;
29/**
30 * 是否逆序,同历史消息查询,默认从现在查到过去,BOOL
31 */
32@property(nullable, nonatomic, copy)NSNumber *reverse;
33/**
34 * 最大数量限制,默认100,最大100,NSInteger
35 */
36@property(nullable, nonatomic, copy)NSNumber *limit;
37/**
38 * 排除id,long
39 */
40@property(nullable, nonatomic, copy)NSNumber *excludeRecordId;
41
42@end
43
44NS_ASSUME_NONNULL_END
Definition: NIMQChatGetInviteApplyRecordOfSelfParam.h:19
NSNumber * excludeRecordId
Definition: NIMQChatGetInviteApplyRecordOfSelfParam.h:40
NSNumber * toTime
Definition: NIMQChatGetInviteApplyRecordOfSelfParam.h:28
NSNumber * limit
Definition: NIMQChatGetInviteApplyRecordOfSelfParam.h:36
NSNumber * reverse
Definition: NIMQChatGetInviteApplyRecordOfSelfParam.h:32
NSNumber * fromTime
Definition: NIMQChatGetInviteApplyRecordOfSelfParam.h:24
Definition: NIMQChatMessage.h:76
Definition: NIMQChatUpdateParam.h:13