@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
17 lines (16 loc) • 457 B
TypeScript
import { Children } from './Children';
export declare enum LogicalOperator {
AND = "AND",
OR = "OR"
}
/**
* customTargeting
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202505`
*/
export interface CustomTargeting {
/** CustomCriteriaSet.LogicalOperator|xsd:string|AND,OR */
logicalOperator?: LogicalOperator | keyof typeof LogicalOperator;
/** children[] */
children?: Array<Children>;
}