google-adwords-node
Version:
Google Ads API Client Library for Node.js
11 lines (10 loc) • 365 B
TypeScript
import { IAttributes } from './Attributes';
import { Operator } from '../enum';
import { IExemptionRequest } from './ExemptionRequest';
export interface IOperation<T, Type = any> extends IAttributes<Type> {
operand: T;
operator: Operator;
exemptionRequests?: IExemptionRequest[];
ignorablePolicyTopicIds?: string[];
'Operation.Type'?: string;
}