萤石云 iOSSDK,移植跨平台相关工程
JLChen
2021-01-29 2b77dde1f45abb7ef820ce91e9aedaabe8f7e20b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
//  EZVideoTalkParam.h
//  EZOpenSDK
//
//  Created by yuqian on 2020/3/14.
//  Copyright © 2020 Hikvision. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface EZVideoTalkParam : NSObject
 
@property (nonatomic, assign) int32_t iCltRole; /**< 必填    0 发起 1 接受 发起端填写0 接受端填写1 拒绝为2 */
@property (nonatomic, assign) int32_t iOtherCltType; /**< 选择    只有对端是手表端需填写 */
@property (nonatomic, assign) int32_t iCltType; /**< 必填    客户端类型 */
@property (nonatomic, strong) NSString *szStsAddr; /**< 必填    服务地址 */
@property (nonatomic, assign) int32_t iStsPort; /**< 必填    服务端口 */
@property (nonatomic, assign) int32_t iRoomId; /**< 选择    需要加入房间号,只有接受端需要填写 */
@property (nonatomic, assign) int32_t iReason; /**< 选择  原因 拒接接听101 无人接听102 */
 
@property (nonatomic, strong) NSString *szSelfId;  /**< 必填  标识Id */
@property (nonatomic, strong) NSString *szOterId; /**< 选择    手表序列号 */
@property (nonatomic, strong) NSString *szAuthToken; /**< 必填    认证token */
 
@property (nonatomic, strong) NSString *m_szExtensionParas; /**< 选择    扩展字段信息 */
 
@end
 
NS_ASSUME_NONNULL_END