NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatRTCUpdateChannelInfoParam.h
浏览该文件的文档.
1//
2// NIMQChatRTCUpdateChannelInfoParam.h
3// NIMLib
4//
5// Created by lihuang on 2022/6/18.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
14
15/**
16 * 服务器ID
17 */
18@property (nonatomic, assign) unsigned long long serverId;
19
20/**
21 * 频道ID
22 */
23@property (nonatomic, assign) unsigned long long channelId;
24
25/**
26 * 人数限制
27 */
28@property (nonatomic, assign) NSInteger limit;
29
30/**
31 * 音频设置
32 */
33@property (nonatomic, copy) NSString *audioConfig;
34
35/**
36 * 视频设置
37 */
38@property (nonatomic, copy) NSString *videoConfig;
39
40@end
41
42NS_ASSUME_NONNULL_END
Definition: NIMQChatRTCUpdateChannelInfoParam.h:14
unsigned long long channelId
Definition: NIMQChatRTCUpdateChannelInfoParam.h:23
NSString * audioConfig
Definition: NIMQChatRTCUpdateChannelInfoParam.h:33
NSInteger limit
Definition: NIMQChatRTCUpdateChannelInfoParam.h:28
NSString * videoConfig
Definition: NIMQChatRTCUpdateChannelInfoParam.h:38
unsigned long long serverId
Definition: NIMQChatRTCUpdateChannelInfoParam.h:18