NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGetServerRoleMembersParam.h
浏览该文件的文档.
1//
2// NIMQChatGetServerRoleMembersParam.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 */
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 roleId;
27
28/**
29 * timetag
30 */
31@property (nonatomic, assign) NSTimeInterval timeTag;
32
33/**
34 * 查询的起始accid,第一页时填空串
35 */
36@property (nonatomic, copy) NSString *accid;
37
38/**
39 * 每页个数
40 */
41@property (nonatomic, assign) NSInteger limit;
42
43@end
44
45
46NS_ASSUME_NONNULL_END
Definition: NIMQChatGetServerRoleMembersParam.h:17
NSString * accid
Definition: NIMQChatGetServerRoleMembersParam.h:36
NSTimeInterval timeTag
Definition: NIMQChatGetServerRoleMembersParam.h:31
unsigned long long serverId
Definition: NIMQChatGetServerRoleMembersParam.h:21
NSInteger limit
Definition: NIMQChatGetServerRoleMembersParam.h:41
unsigned long long roleId
Definition: NIMQChatGetServerRoleMembersParam.h:26