nodejs-google-adwords
Version:
Google Ads API Client Library for Node.js
9 lines (8 loc) • 343 B
TypeScript
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[];
}