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

UriTargeting

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

Represents a list of targeted and excluded URLs (for example, google.com). For Private Auction Deals, URLs are either included or excluded. For Programmatic Guaranteed and Preferred Deals, this doesn't apply.

interface UriTargeting {
excludedUris?: string[];
targetedUris?: string[];
}

§Properties

§
excludedUris?: string[]
[src]

A list of URLs to be excluded.

§
targetedUris?: string[]
[src]

A list of URLs to be included.