SCTVOSSDK 23.0.0
Smartclip Advertisement Framework for tvOS
Loading...
Searching...
No Matches
SCContentSource.h
1//
2// SCContentSource.h
3// SmartclipSDKiOS
4//
5// Copyright © 2021 smartclip. All rights reserved.
6//
7
8#import <Foundation/Foundation.h>
9
10NS_ASSUME_NONNULL_BEGIN
11
13@interface SCContentSource : NSObject
15@property (nonatomic, copy) NSString *url;
17@property (nonatomic) double offset;
18
20- (instancetype)initWithSource:(NSString*)source andOffset:(double)offset;
22- (NSString*)getDescription;
23@end
24
25NS_ASSUME_NONNULL_END
Description of the contentVideo and its current playback offset.
Definition: SCContentSource.h:14
double offset
Current playback offset.
Definition: SCContentSource.h:17
NSString * url
URL of the contentVideo.
Definition: SCContentSource.h:15
NSString * getDescription()
Description as JSON parsable String.