Interface VerizonMediaPreplayVodResponse

Represents a Verizon Media Preplay response for VOD assets.

interface VerizonMediaPreplayVodResponse {
    ads: VerizonMediaResponseVodAds;
    drm?: VerizonMediaResponseDrm;
    interstitialURL: undefined | null | string;
    playURL: string;
    prefix: string;
    sid: string;
    type: "vod";
}

Hierarchy (view full)

Properties

The advertisement information.

The content protection information.

Remarks


- Currently, this only contains the Fairplay certificate URL.
- Widevine will default to 'https://content.uplynk.com/wv'.
- Playready will default to 'https://content.uplynk.com/pr'.

interstitialURL: undefined | null | string

The URL to the interstitial information

Remarks


- This file is a XML.
- This parameter reports null when ads are not found.
- It should only be used on Apple TV.

playURL: string

The manifest's URL.

prefix: string

The zone prefix for the viewer's session.

Remarks


- Use this prefix when submitting playback or API requests for this session.

Example

E.g. 'https://content-ause2.uplynk.com/'

sid: string

The identifier of the viewer's session.

type: "vod"

The response type of the request.

Generated using TypeDoc