NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatUpdateServerMemberBanParam.h
浏览该文件的文档.
1
2//
3// NIMQChatUpdateServerMemberBanParam.h
4// NIMSDK
5//
6// Created by Evang on 2022/3/16.
7// Copyright © 2022 Netease. All rights reserved.
8//
9
10#import <Foundation/Foundation.h>
11
12NS_ASSUME_NONNULL_BEGIN
13
14/**
15 * 封禁解封服务器成员入参
16 */
18
19/**
20 * 服务器id
21 */
22@property (nonatomic, assign) unsigned long long serverId;
23
24/**
25 * 目标用户accid
26 */
27@property (nonatomic, copy) NSString *targetAccid;
28
29/**
30 * 自定义扩展
31 */
32@property (nonatomic, copy) NSString *custom;
33
34@end
35
36NS_ASSUME_NONNULL_END
37
Definition: NIMQChatUpdateServerMemberBanParam.h:18
NSString * targetAccid
Definition: NIMQChatUpdateServerMemberBanParam.h:27
NSString * custom
Definition: NIMQChatUpdateServerMemberBanParam.h:32
unsigned long long serverId
Definition: NIMQChatUpdateServerMemberBanParam.h:22