GCKAdBreakStatus.h
1 // Copyright 2016 Google Inc.
2 
3 #import <GoogleCast/GCKDefines.h>
4 
5 #import <Foundation/Foundation.h>
6 
7 GCK_ASSUME_NONNULL_BEGIN
8 
14 GCK_EXPORT
15 @interface GCKAdBreakStatus : NSObject <NSCopying>
16 
18 @property(nonatomic, assign, readonly) NSTimeInterval currentAdBreakTime;
19 
21 @property(nonatomic, assign, readonly) NSTimeInterval currentAdBreakClipTime;
22 
24 @property(nonatomic, strong, readonly) NSString *adBreakID;
25 
27 @property(nonatomic, strong, readonly) NSString *adBreakClipID;
28 
29 @end
30 
31 GCK_ASSUME_NONNULL_END
NSString * adBreakClipID
The string identifier for the current ad clip break.
Definition: GCKAdBreakStatus.h:27
A class representing the ad break status.
Definition: GCKAdBreakStatus.h:15
NSTimeInterval currentAdBreakTime
The current time within the current ad break.
Definition: GCKAdBreakStatus.h:18
NSString * adBreakID
The string identifier for the current ad break.
Definition: GCKAdBreakStatus.h:24
NSTimeInterval currentAdBreakClipTime
The current time within the current ad clip break.
Definition: GCKAdBreakStatus.h:21