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.
57 lines
914 B
57 lines
914 B
// |
|
// VideoConfigModel.h |
|
// watch |
|
// |
|
// Created by Apple on 2019/5/13. |
|
// Copyright © 2019年 xTT. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface VideoConfigModel : NSObject |
|
|
|
/** |
|
设备的imei |
|
*/ |
|
@property(nonatomic, strong) NSString * imei; |
|
|
|
/** |
|
此次视频通话的id |
|
*/ |
|
@property(nonatomic, strong) NSString * video_id; |
|
|
|
/** |
|
视频码率 宽度 |
|
*/ |
|
@property(nonatomic, assign) NSInteger distinguishability_width; |
|
/** |
|
视频码率 高度 |
|
*/ |
|
@property(nonatomic, assign) NSInteger distinguishability_heiger; |
|
|
|
/** |
|
剩余分钟说明 |
|
*/ |
|
@property(nonatomic, strong) NSString *video_endtime; |
|
|
|
/** |
|
通话限制 |
|
*/ |
|
@property (assign, nonatomic) int limit_time; |
|
|
|
/** |
|
通话等待时间 |
|
*/ |
|
@property (assign, nonatomic) int wait_time; |
|
|
|
|
|
/** |
|
通话类型 0:视频 1:语音 |
|
*/ |
|
@property (assign, nonatomic) int call_type; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|