NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatUpdateChannelParam.h
浏览该文件的文档.
1//
2// NIMQChatUpdateChannelParam.h
3// NIMSDK
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import "NIMQChatDefs.h"
11
12@class NIMQChatChannel;
13
14NS_ASSUME_NONNULL_BEGIN
15
16/**
17 * 修改频道信息的参数
18 */
19@interface NIMQChatUpdateChannelParam : NSObject
20
21/**
22 * 频道id
23 */
24@property (nonatomic, assign) unsigned long long channelId;
25
26/**
27 * 名称
28 */
29@property (nullable, nonatomic, copy) NSString *name;
30
31/**
32 * 主题
33 */
34@property (nullable, nonatomic, copy) NSString *topic;
35
36/**
37 * 自定义扩展
38 */
39@property (nullable, nonatomic, copy) NSString *custom;
40
41/**
42 * 查看模式
43 */
44@property (nonatomic, assign) NIMQChatChannelViewMode viewMode;
45
46/**
47 * 游客可见模式
48 */
49@property (nonatomic, assign) NIMQChatVisitorMode visitorMode;
50
51/**
52 * 对某些资料内容另外的反垃圾的业务ID
53 */
54@property (nonatomic, copy) NSString *antispamBusinessId;
55
56
57@end
58
59
60NS_ASSUME_NONNULL_END
NIMQChatVisitorMode
Definition: NIMQChatDefs.h:533
NIMQChatChannelViewMode
Definition: NIMQChatDefs.h:418
Definition: NIMQChatChannel.h:16
Definition: NIMQChatUpdateChannelParam.h:20
unsigned long long channelId
Definition: NIMQChatUpdateChannelParam.h:24
NSString * custom
Definition: NIMQChatUpdateChannelParam.h:39
NSString * antispamBusinessId
Definition: NIMQChatUpdateChannelParam.h:54
NSString * topic
Definition: NIMQChatUpdateChannelParam.h:34
NIMQChatVisitorMode visitorMode
Definition: NIMQChatUpdateChannelParam.h:49
NIMQChatChannelViewMode viewMode
Definition: NIMQChatUpdateChannelParam.h:44
NSString * name
Definition: NIMQChatUpdateChannelParam.h:29