Amazon Vinyl
    Preparing search index...

    Interface SkipControl

    Describes when a user may skip an ad break: skipping becomes available offset seconds into the break and remains offered for duration seconds (or the rest of the break when null).

    interface SkipControl {
        duration: number | null;
        offset: number;
    }
    Index
    duration: number | null

    Seconds the skip control remains offered after offset, or null to offer it for the remainder of the break.

    offset: number

    Seconds from the break start at which skipping becomes available.