// // BairuiModel.h // tongxin // // Created by ecell on 2020/11/18. // Copyright © 2020 xTT. All rights reserved. // #import #import "VideoConfigModel.h" NS_ASSUME_NONNULL_BEGIN @interface BairuiModel : VideoConfigModel /* appkey : [str] username : [str] // app环信登录账号 password : [str] // app环信登录密码 device_username : [str] // 设备登录账号 imei : [str] // 设备账号 video_type : [int] // 视频服务商:声网(1),环信(2) limit_time : [int] // 限制视频通话时长(单位:s) wait_time : [int] // 进入频道等待时间(单位:s) video_id : [str] // 此次视频通话的id distinguishability_width : [int] // 视频分辨率(宽) distinguishability_heiger : [int] // 视频分辨率(高) */ /** APPKey */ @property(nonatomic, strong) NSString * appkey; /** 账号 */ @property(nonatomic, strong) NSString * username; /** 密码 */ @property(nonatomic, strong) NSString * password; /** 设备账号 */ @property(nonatomic, strong) NSString * device_username; @property(nonatomic, strong) NSString * deviceName; @end NS_ASSUME_NONNULL_END