NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatUpdateServerMemberInfoParam.h
浏览该文件的文档.
1//
2// NIMQChatUpdateServerMemberInfoParam.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@property (nonatomic, assign) unsigned long long serverId;
19
20@property (nonnull, nonatomic, copy) NSString *accid;
21
22@property (nonatomic, copy) NSString *nick;
23
24@property (nonatomic, copy) NSString *avatar;
25
26/**
27 * 对某些资料内容另外的反垃圾的业务ID
28 */
29@property (nonatomic, copy) NSString *antispamBusinessId;
30
31@end
32
33NS_ASSUME_NONNULL_END
Definition: NIMQChatUpdateServerMemberInfoParam.h:17
NSString * accid
Definition: NIMQChatUpdateServerMemberInfoParam.h:20
NSString * nick
Definition: NIMQChatUpdateServerMemberInfoParam.h:22
NSString * avatar
Definition: NIMQChatUpdateServerMemberInfoParam.h:24
unsigned long long serverId
Definition: NIMQChatUpdateServerMemberInfoParam.h:18
NSString * antispamBusinessId
Definition: NIMQChatUpdateServerMemberInfoParam.h:29