uniapp-app/nativeplugins/netease-Callkit/ios/NIMSDK.framework/Headers/NIMQChatUpdateChannelBlackWhiteMembersParam.h
2025-10-09 16:48:46 +08:00

48 lines
827 B
Objective-C

//
// NIMQChatUpdateChannelBlackWhiteMembersParam.h
// NIMSDK
//
// Created by Evang on 2022/2/10.
// Copyright © 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "NIMQChatDefs.h"
NS_ASSUME_NONNULL_BEGIN
/**
*
*/
@interface NIMQChatUpdateChannelBlackWhiteMembersParam : NSObject
/**
* 服务器id
*/
@property (nonatomic, assign) unsigned long long serverId;
/**
* 频道id
*/
@property (nonatomic, assign) unsigned long long channelId;
/**
* 成员身份组类型
*/
@property (nonatomic, assign) NIMQChatChannelMemberRoleType type;
/**
* 频道成员身份组的操作类型
*/
@property (nonatomic, assign) NIMQChatChannelMemberRoleOpeType opeType;
/**
* 用户accid数组
*/
@property (nonatomic, copy) NSArray <NSString *> *accids;
@end
NS_ASSUME_NONNULL_END