UNPKG

nodejs-google-adwords

Version:
9 lines (8 loc) 343 B
import { IOperation } from '../../../types/adwords'; import { IAdGroupAd } from './AdGroupAd'; import { IExemptionRequest } from './ExemptionRequest'; export interface IAdGroupAdOperation extends IOperation<'AdGroupAdOperation'> { operand: IAdGroupAd; exemptionRequests?: IExemptionRequest[]; ignorablePolicyTopicIds?: string[]; }