zdk.objc
ZDKRecordingStream.h
1//
2// ZDKRecordingStream.h
3// ZDK
4//
5
6#ifndef ZDKRecordingStream_h
7#define ZDKRecordingStream_h
8
9#import <Foundation/Foundation.h>
10#import "ZDKRecordingType.h"
11#import "ZDKZHandle.h"
12
13NS_ASSUME_NONNULL_BEGIN
14
20
29@property(nonatomic, readonly) ZDKRecordingType origin;
30
37@property(nonatomic, readonly) NSString* _Nullable type;
38
45@property(nonatomic, readonly) NSString* _Nullable fileName;
46
53@property(nonatomic, readonly) NSString* _Nullable languageCode;
54
55-(NSString*)handlesDescription;
56
57@end
58
59NS_ASSUME_NONNULL_END
60
61#endif
Banafo Call.
Definition: ZDKRecordingStream.h:19
NSString *_Nullable fileName
The name of the file.
Definition: ZDKRecordingStream.h:45
ZDKRecordingType origin
The origin of the file content.
Definition: ZDKRecordingStream.h:29
NSString *_Nullable languageCode
ZDKETF language tag of the recording.
Definition: ZDKRecordingStream.h:53
NSString *_Nullable type
Recording stream type.
Definition: ZDKRecordingStream.h:37
Definition: ZDKZHandle.h:13