@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
16 lines (15 loc) • 394 B
TypeScript
import { Targeting } from './Targeting';
import { CreativePlaceholders } from './CreativePlaceholders';
/**
* targets
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202505`
*/
export interface Targets {
/** xsd:string */
name?: string;
/** targeting */
targeting?: Targeting;
/** creative */
creative?: CreativePlaceholders;
}