41 lines
703 B
Objective-C
41 lines
703 B
Objective-C
//
|
|
// NIMQChatUpdateMemberRoleParam.h
|
|
// NIMSDK
|
|
//
|
|
// Created by Netease.
|
|
// Copyright © 2022 Netease. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class NIMQChatPermissionStatusInfo;
|
|
|
|
/**
|
|
* 修改某人的定制权限
|
|
*/
|
|
@interface NIMQChatUpdateMemberRoleParam : NSObject
|
|
|
|
/**
|
|
* 服务器id
|
|
*/
|
|
@property (nonatomic, assign) unsigned long long serverId;
|
|
/**
|
|
* 频道id
|
|
*/
|
|
@property (nonatomic, assign) unsigned long long channelId;
|
|
/**
|
|
* 用户id
|
|
*/
|
|
@property (nonatomic, copy) NSString *accid;
|
|
|
|
/**
|
|
* 操作的权限状态列表
|
|
*/
|
|
@property (nonatomic, copy) NSArray <NIMQChatPermissionStatusInfo *> *commands;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|