NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatRemoveServerRoleMemberParam.h
浏览该文件的文档.
1//
2// NIMQChatRemoveServerRoleMemberParam.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 */
17
18/**
19 * 服务器id
20 */
21@property (nonatomic, assign) unsigned long long serverId;
22
23/**
24 * 身份组id
25 */
26@property (nonatomic, assign) unsigned long long roleId;
27/**
28 * 用户accids
29 */
30@property (nonnull, nonatomic, copy) NSArray <NSString *> *accountArray;
31
32@end
33
34
35NS_ASSUME_NONNULL_END
Definition: NIMQChatRemoveServerRoleMemberParam.h:17
NSArray< NSString * > * accountArray
Definition: NIMQChatRemoveServerRoleMemberParam.h:30
unsigned long long serverId
Definition: NIMQChatRemoveServerRoleMemberParam.h:21
unsigned long long roleId
Definition: NIMQChatRemoveServerRoleMemberParam.h:26