NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatRemoveChannelRoleParam.h
浏览该文件的文档.
1//
2// NIMQChatRemoveChannelRoleParam.h
3// NIMSDK
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13/**
14 * 删除某频道下的某身份组
15 */
16@interface NIMQChatRemoveChannelRoleParam : NSObject
17
18/**
19 * 服务器id
20 */
21@property (nonatomic, assign) unsigned long long serverId;
22/**
23 * 频道id
24 */
25@property (nonatomic, assign) unsigned long long channelId;
26/**
27 * 身份组id
28 */
29@property (nonatomic, assign) unsigned long long roleId;
30
31@end
32
33
34NS_ASSUME_NONNULL_END
Definition: NIMQChatRemoveChannelRoleParam.h:17
unsigned long long roleId
Definition: NIMQChatRemoveChannelRoleParam.h:29
unsigned long long serverId
Definition: NIMQChatRemoveChannelRoleParam.h:21
unsigned long long channelId
Definition: NIMQChatRemoveChannelRoleParam.h:25