nodejs-google-adwords
Version:
Google Ads API Client Library for Node.js
10 lines (9 loc) • 356 B
TypeScript
import { IListReturnValue } from './abstract/ListReturnValue';
import { INegativeCampaignCriterion } from './CampaignCriterion';
export interface ICampaignCriterionReturnValue extends IListReturnValue {
value: INegativeCampaignCriterion[];
partialFailureErrors?: any[];
attibutes: {
'xsi:type': 'CampaignCriterionReturnValue';
};
}