import { Children } from './Children'

export enum LogicalOperator {
  AND = 'AND',
  OR = 'OR',
}

/**
 * customTargeting
 * @targetNSAlias `tns`
 * @targetNamespace `https://www.google.com/apis/ads/publisher/v202502`
 */
export interface CustomTargeting {
  /** CustomCriteriaSet.LogicalOperator|xsd:string|AND,OR */
  logicalOperator?: LogicalOperator | keyof typeof LogicalOperator
  /** children[] */
  children?: Array<Children>
}
