NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGetExistingChannelCategoryBlackWhiteRolesParam.h
浏览该文件的文档.
1
2//
3// NIMQChatGetExistingChannelCategoryBlackWhiteRolesParam.h
4// NIMSDK
5//
6// Created by Evang on 2022/2/15.
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 * 身份组roleid数组
37 */
38@property (nonatomic, copy) NSArray <NSNumber *> *roleIds;
39
40@end
41
42NS_ASSUME_NONNULL_END
43
NIMQChatChannelMemberRoleType
Definition: NIMQChatDefs.h:442
Definition: NIMQChatGetExistingChannelCategoryBlackWhiteRolesParam.h:19
NSArray< NSNumber * > * roleIds
Definition: NIMQChatGetExistingChannelCategoryBlackWhiteRolesParam.h:38
unsigned long long categoryId
Definition: NIMQChatGetExistingChannelCategoryBlackWhiteRolesParam.h:28
unsigned long long serverId
Definition: NIMQChatGetExistingChannelCategoryBlackWhiteRolesParam.h:23
NIMQChatChannelMemberRoleType type
Definition: NIMQChatGetExistingChannelCategoryBlackWhiteRolesParam.h:33