UNPKG

@dmgt/google-ad-manager-api

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