NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGetServerBanedMembersByPageResult.h
浏览该文件的文档.
1
2//
3// NIMQChatGetServerBanedMembersByPageResult.h
4// NIMSDK
5//
6// Created by Netease.
7// Copyright © 2022 Netease. All rights reserved.
8//
9
10#import <Foundation/Foundation.h>
11
12NS_ASSUME_NONNULL_BEGIN
13
15
16/**
17 * 分页获取服务器封禁名单的结果
18 */
20
21/**
22 * 是否还有下一页数据
23 */
24@property (nonatomic, assign) BOOL hasMore;
25
26/**
27 * 下一页的起始时间戳
28 */
29@property (nonatomic, assign) NSTimeInterval nextTimetag;
30
31/**
32 * 成员列表
33 */
34@property (nonatomic, copy) NSArray <NIMQChatServerMemberBanInfo *> *memberArray;
35
36@end
37
38
39
40@interface NIMQChatServerMemberBanInfo : NSObject
41
42/**
43 * 服务器id
44 */
45@property (nonatomic, assign) unsigned long long serverId;
46/**
47 * 应用id
48 */
49@property (nonatomic, assign) unsigned long long appId;
50
51/**
52 * 用户accid
53 */
54@property (nonatomic, copy) NSString *accId;
55
56/**
57 * 自定义扩展
58 */
59@property (nonatomic, copy) NSString *custom;
60
61/**
62 * 封禁时间
63 */
64@property (nonatomic, assign) NSTimeInterval banTime;
65
66/**
67 * 有效标志
68 */
69@property (nonatomic, assign) BOOL validFlag;
70
71/**
72 * 创建时间
73 */
74@property (nonatomic, assign) NSTimeInterval createTime;
75
76/**
77 * 更新时间
78 */
79@property (nonatomic, assign) NSTimeInterval updateTime;
80
81
82@end
83
84NS_ASSUME_NONNULL_END
85
86
Definition: NIMQChatGetServerBanedMembersByPageResult.h:20
NSTimeInterval nextTimetag
Definition: NIMQChatGetServerBanedMembersByPageResult.h:29
BOOL hasMore
Definition: NIMQChatGetServerBanedMembersByPageResult.h:24
NSArray< NIMQChatServerMemberBanInfo * > * memberArray
Definition: NIMQChatGetServerBanedMembersByPageResult.h:34
Definition: NIMQChatGetServerBanedMembersByPageResult.h:41