IMACuepoint.h
1 //
2 // IMACuepoint.h
3 // GoogleIMA3_ios
4 //
5 // Represents a cuepoint with a start and end time.
6 
7 
8 #import <Foundation/Foundation.h>
9 
13 @interface IMACuepoint : NSObject
14 
18 @property(nonatomic, readonly) NSTimeInterval startTime;
19 
23 @property(nonatomic, readonly) NSTimeInterval endTime;
24 
28 @property(nonatomic, readonly, getter=isPlayed) BOOL played;
29 
33 - (instancetype)init NS_UNAVAILABLE;
34 
35 @end
instancetype NS_UNAVAILABLE()
:nodoc:
Data object representation of a cuepoint for a single ad break.
Definition: IMACuepoint.h:13
NSTimeInterval startTime
The start time of the cuepoint in seconds.
Definition: IMACuepoint.h:18
BOOL played
Specifies whether this cuepoint has been played.
Definition: IMACuepoint.h:28
NSTimeInterval endTime
The end time of the cuepoint in seconds.
Definition: IMACuepoint.h:23