Interface VerizonMediaResponseVodAdBreak

Represents a Verizon Media response with ad break information for VOD assets.

interface VerizonMediaResponseVodAdBreak {
    ads: VerizonMediaResponseVodAd[];
    duration: number;
    events: Record<string, string[]>;
    position: "" | "preroll" | "midroll" | "postroll" | "overlay" | "pause";
    timeOffset: number;
    type: "nonlinear" | "linear";
}

Properties

List of ad information.

duration: number

The duration of the ad break, in seconds.

events: Record<string, string[]>

A record of all VAST 3.0 tracking events for the ad break. Each entry contains an event name with associated tracking URLs.

position: "" | "preroll" | "midroll" | "postroll" | "overlay" | "pause"

The position of the ad break, represented by a value from the following list:
- 'preroll': Ad break that plays before the content.
- 'midroll': Ad break that plays during the content.
- 'postroll': Ad break that plays after the content.
- 'pause': Ad break that should be shown when the player is paused.
- 'overlay': Non-linear ad break that is shown over the player.
- '': Unknown ad break position.

timeOffset: number

The time offset of the ad break, in seconds.

type: "nonlinear" | "linear"

The type of the ad break.