NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGetServerRolesParam.h
浏览该文件的文档.
1//
2// NIMQChatGetServerRolesParam.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 */
16@interface NIMQChatGetServerRolesParam : NSObject
17
18/**
19 * 服务器id
20 */
21@property (nonatomic, assign) unsigned long long serverId;
22
23/**
24 * 每页个数
25 */
26@property (nonatomic, assign) NSInteger limit;
27
28/**
29 * 优先级
30 */
31@property (nullable, nonatomic, strong) NSNumber *priority;
32
33/**
34 * 以channelId的名义查询,可选,如果传了,则只需要有该channel的管理权限即可,否则需要有server的管理权限
35 */
36@property (nonatomic, assign) unsigned long long channelId;
37
38/**
39 * 频道分组id,以categoryId的名义查询,可选,如果传了,则只需要有该channel category的管理角色权限即可,否则需要有server的管理权限
40 */
41@property (nonatomic, assign) unsigned long long categoryId;
42
43@end
44
45
46NS_ASSUME_NONNULL_END
Definition: NIMQChatGetServerRolesParam.h:17
unsigned long long serverId
Definition: NIMQChatGetServerRolesParam.h:21
unsigned long long channelId
Definition: NIMQChatGetServerRolesParam.h:36
unsigned long long categoryId
Definition: NIMQChatGetServerRolesParam.h:41
NSInteger limit
Definition: NIMQChatGetServerRolesParam.h:26
NSNumber * priority
Definition: NIMQChatGetServerRolesParam.h:31