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