THEOplayer Web SDK
    Preparing search index...

    Interface UplynkResponseVodAdBreak

    Represents an Uplynk response with ad break information for VOD assets.

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

    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: "linear" | "nonlinear"

    The type of the ad break.