Interface AdSkipEvent

Fired when an ad is skipped.

interface AdSkipEvent {
    ad: Ad;
    date: Date;
    playedPercentage: number;
    type: "adskip";
}

Hierarchy (view full)

Properties

ad: Ad

The ad.

date: Date

The creation date of the event.

playedPercentage: number

The amount of time that was played before the ad was skipped, as a fraction between 0 and 1.

type: "adskip"

The type of the event.

Generated using TypeDoc