NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatRTCChannelInfo.h
浏览该文件的文档.
1//
2// NIMQChatRTCChannelInfo.h
3// NIMLib
4//
5// Created by lihuang on 2022/6/16.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13@interface NIMQChatRTCChannelInfo : NSObject <NSCopying>
14
15/**
16 * 人数限制
17 */
18@property (nonatomic, assign) NSInteger limit;
19
20/**
21 * 音频设置
22 */
23@property (nonatomic, copy) NSString *audioConfig;
24
25/**
26 * 视频设置
27 */
28@property (nonatomic, copy) NSString *videoConfig;
29
30@end
31
32NS_ASSUME_NONNULL_END
Definition: NIMQChatRTCChannelInfo.h:13
NSString * videoConfig
Definition: NIMQChatRTCChannelInfo.h:28
NSString * audioConfig
Definition: NIMQChatRTCChannelInfo.h:23
NSInteger limit
Definition: NIMQChatRTCChannelInfo.h:18