NIMNetCallRecordingInfo.h
670 Bytes
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
32
33
34
35
36
37
//
// NIMNetCallRecordingInfo.h
// NIMLib
//
// Created by Netease.
// Copyright (c) 2016年 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "NIMRTSManagerProtocol.h"
NS_ASSUME_NONNULL_BEGIN
/**
* 网络通话服务器录制服务信息
*/
@interface NIMNetCallRecordingInfo : NSObject
/**
* 录制文件对应的 call id
*/
@property (nonatomic, readonly, assign) UInt64 callID;
/**
* 录制存储音频文件名
*/
@property (nonatomic, readonly, copy) NSString *audioRecordFileName;
/**
* 录制存储视频文件名
*/
@property (nonatomic, readonly, copy) NSString *videoRecordFileName;
@end
NS_ASSUME_NONNULL_END