NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatUpdateChannelCategoryBlackWhiteMembersParam.h
浏览该文件的文档.
1
2//
3// NIMQChatUpdateChannelCategoryBlackWhiteMembersParam.h
4// NIMSDK
5//
6// Created by Evang on 2022/2/10.
7// Copyright © 2022 Netease. All rights reserved.
8//
9
10#import <Foundation/Foundation.h>
11#import "NIMQChatDefs.h"
12
13NS_ASSUME_NONNULL_BEGIN
14
15/**
16 * 更新频道分组黑白成员参数
17 */
19
20/**
21 * 服务器id
22 */
23@property (nonatomic, assign) unsigned long long serverId;
24
25/**
26 * 频道分组id
27 */
28@property (nonatomic, assign) unsigned long long categoryId;
29
30/**
31 * 成员身份组类型
32 */
33@property (nonatomic, assign) NIMQChatChannelMemberRoleType type;
34
35/**
36 * 频道成员身份组的操作类型
37 */
38@property (nonatomic, assign) NIMQChatChannelMemberRoleOpeType opeType;
39
40/**
41 * 用户accid数组
42 */
43@property (nonatomic, copy) NSArray <NSString *> *accids;
44
45@end
46
47NS_ASSUME_NONNULL_END
NIMQChatChannelMemberRoleType
Definition: NIMQChatDefs.h:442
NIMQChatChannelMemberRoleOpeType
Definition: NIMQChatDefs.h:437
Definition: NIMQChatUpdateChannelCategoryBlackWhiteMembersParam.h:19
unsigned long long serverId
Definition: NIMQChatUpdateChannelCategoryBlackWhiteMembersParam.h:23
NIMQChatChannelMemberRoleType type
Definition: NIMQChatUpdateChannelCategoryBlackWhiteMembersParam.h:33
NSArray< NSString * > * accids
Definition: NIMQChatUpdateChannelCategoryBlackWhiteMembersParam.h:43
unsigned long long categoryId
Definition: NIMQChatUpdateChannelCategoryBlackWhiteMembersParam.h:28
NIMQChatChannelMemberRoleOpeType opeType
Definition: NIMQChatUpdateChannelCategoryBlackWhiteMembersParam.h:38