AI-generated Key Takeaways
- 
          IMACuepoint is a data object representing a cuepoint for a single ad break. 
- 
          It contains properties for the start time, end time, and played status of the cuepoint in seconds. 
- 
          The startTimeandendTimeproperties are read-only time intervals, whileplayedis a read-only boolean.
IMACuepoint
@interface IMACuepoint : NSObjectData object representation of a cuepoint for a single ad break.
- 
                  
                  The start time of the cuepoint in seconds. DeclarationSwift var startTime: TimeInterval { get }Objective-C @property (nonatomic, readonly) NSTimeInterval startTime;
- 
                  
                  The end time of the cuepoint in seconds. DeclarationSwift var endTime: TimeInterval { get }Objective-C @property (nonatomic, readonly) NSTimeInterval endTime;
- 
                  
                  Specifies whether this cuepoint has been played. DeclarationSwift var isPlayed: Bool { get }Objective-C @property (nonatomic, readonly, getter=isPlayed) BOOL played;