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/authorizedbuyersmarketplace:v1.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. When this field is populated, the targeted_position_types field must be empty.

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

A list of video positions to be included. When this field is populated, the excluded_position_types field must be empty.