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