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.