Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

VideoTargeting

import type { VideoTargeting } from "https://googleapis.deno.dev/v1/adexchangebuyer2:v2beta1.ts";

Represents targeting information about video.

interface VideoTargeting {
excludedPositionTypes?:
| "POSITION_TYPE_UNSPECIFIED"
| "PREROLL"
| "MIDROLL"
| "POSTROLL"[];
targetedPositionTypes?:
| "POSITION_TYPE_UNSPECIFIED"
| "PREROLL"
| "MIDROLL"
| "POSTROLL"[];
}

§Properties

§
excludedPositionTypes?: "POSITION_TYPE_UNSPECIFIED" | "PREROLL" | "MIDROLL" | "POSTROLL"[]
[src]

A list of video positions to be excluded. Position types can either be included or excluded (XOR).

§
targetedPositionTypes?: "POSITION_TYPE_UNSPECIFIED" | "PREROLL" | "MIDROLL" | "POSTROLL"[]
[src]

A list of video positions to be included. When the included list is present, the excluded list must be empty. When the excluded list is present, the included list must be empty.