NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatUpdateChannelRoleParam.h
浏览该文件的文档.
1//
2// NIMQChatUpdateChannelRoleParam.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
13/**
14 * 修改频道下某身份组的权限
15 */
16@interface NIMQChatUpdateChannelRoleParam : NSObject
17
18/**
19 * 服务器id
20 */
21@property (nonatomic, assign) unsigned long long serverId;
22/**
23 * 频道id
24 */
25@property (nonatomic, assign) unsigned long long channelId;
26/**
27 * 身份组id
28 */
29@property (nonatomic, assign) unsigned long long roleId;
30
31/**
32 * 操作的权限状态列表
33 */
34@property (nonatomic, copy) NSArray <NIMQChatPermissionStatusInfo *> *commands;
35
36
37@end
38
39
40NS_ASSUME_NONNULL_END
Definition: NIMQChatPermissionStatusInfo.h:15
Definition: NIMQChatUpdateChannelRoleParam.h:17
unsigned long long roleId
Definition: NIMQChatUpdateChannelRoleParam.h:29
unsigned long long channelId
Definition: NIMQChatUpdateChannelRoleParam.h:25
unsigned long long serverId
Definition: NIMQChatUpdateChannelRoleParam.h:21
NSArray< NIMQChatPermissionStatusInfo * > * commands
Definition: NIMQChatUpdateChannelRoleParam.h:34