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

TargetingCriteria

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

Advertisers can target different attributes of an ad slot. For example, they can choose to show ads only if the user is in the U.S. Such targeting criteria can be specified as part of Shared Targeting.

interface TargetingCriteria {
exclusions?: TargetingValue[];
inclusions?: TargetingValue[];
key?: string;
}

§Properties

§
exclusions?: TargetingValue[]
[src]

The list of values to exclude from targeting. Each value is AND'd together.

§
inclusions?: TargetingValue[]
[src]

The list of value to include as part of the targeting. Each value is OR'd together.

§
key?: string
[src]

The key representing the shared targeting criterion. Targeting criteria defined by Google ad servers will begin with GOOG_. Third parties may define their own keys. A list of permissible keys along with the acceptable values will be provided as part of the external documentation.