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

DynamicTargetingKey

import type { DynamicTargetingKey } from "https://googleapis.deno.dev/v1/dfareporting:v4.ts";

Contains properties of a dynamic targeting key. Dynamic targeting keys are unique, user-friendly labels, created at the advertiser level in DCM, that can be assigned to ads, creatives, and placements and used for targeting with Studio dynamic creatives. Use these labels instead of numeric Campaign Manager IDs (such as placement IDs) to save time and avoid errors in your dynamic feeds.

interface DynamicTargetingKey {
kind?: string;
name?: string;
objectId?: bigint;
objectType?:
| "OBJECT_ADVERTISER"
| "OBJECT_AD"
| "OBJECT_CREATIVE"
| "OBJECT_PLACEMENT";
}

§Properties

§
kind?: string
[src]

Identifies what kind of resource this is. Value: the fixed string "dfareporting#dynamicTargetingKey".

§
name?: string
[src]

Name of this dynamic targeting key. This is a required field. Must be less than 256 characters long and cannot contain commas. All characters are converted to lowercase.

§
objectId?: bigint
[src]

ID of the object of this dynamic targeting key. This is a required field.

§
objectType?: "OBJECT_ADVERTISER" | "OBJECT_AD" | "OBJECT_CREATIVE" | "OBJECT_PLACEMENT"
[src]

Type of the object of this dynamic targeting key. This is a required field.