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

AddTargetedSitesRequest

import type { AddTargetedSitesRequest } from "https://googleapis.deno.dev/v1/realtimebidding:v1.ts";

A request to start targeting the provided sites in a specific pretargeting configuration. The pretargeting configuration itself specifies how these sites are targeted in PretargetingConfig.webTargeting.

interface AddTargetedSitesRequest {
sites?: string[];
targetingMode?: "TARGETING_MODE_UNSPECIFIED" | "INCLUSIVE" | "EXCLUSIVE";
}

§Properties

§
sites?: string[]
[src]

A list of site URLs to target in the pretargeting configuration. These values will be added to the list of targeted URLs in PretargetingConfig.webTargeting.values.

§
targetingMode?: "TARGETING_MODE_UNSPECIFIED" | "INCLUSIVE" | "EXCLUSIVE"
[src]

Required. The targeting mode that should be applied to the list of site URLs. If there are existing targeted sites, must be equal to the existing PretargetingConfig.webTargeting.targetingMode or a 400 bad request error will be returned.