// // VideoConfigModel.h // watch // // Created by Apple on 2019/5/13. // Copyright © 2019年 xTT. All rights reserved. // #import 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