NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGetExistingChannelRolesByServerRoleIdsParam.h
浏览该文件的文档.
1
2//
3// NIMQChatGetExistingChannelRolesByServerRoleIdsParam.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
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 channelId;
29
30/**
31 * 身份组roleid数组
32 */
33@property (nonatomic, copy) NSArray <NSNumber *> *roleIds;
34
35@end
36
37NS_ASSUME_NONNULL_END
38
Definition: NIMQChatGetExistingChannelRolesByServerRoleIdsParam.h:19
NSArray< NSNumber * > * roleIds
Definition: NIMQChatGetExistingChannelRolesByServerRoleIdsParam.h:33
unsigned long long serverId
Definition: NIMQChatGetExistingChannelRolesByServerRoleIdsParam.h:23
unsigned long long channelId
Definition: NIMQChatGetExistingChannelRolesByServerRoleIdsParam.h:28