You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.3 KiB
59 lines
1.3 KiB
1 year ago
|
//
|
||
|
// TihuModel.h
|
||
|
// tongxin
|
||
|
//
|
||
|
// Created by ecell on 2021/7/29.
|
||
|
// Copyright © 2021 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import "VideoConfigModel.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface TihuModel : 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
|