gads
Version:
An unofficial JS client library for the SOAP-based DFP Ads API
14 lines (13 loc) • 446 B
TypeScript
import { AdExclusionRuleType } from './adExclusionRuleType';
import { BaseObject } from './baseObject';
import { InventoryTargeting } from './inventoryTargeting';
export interface AdExclusionRule extends BaseObject {
id?: number;
name?: string;
isActive?: boolean;
inventoryTargeting?: InventoryTargeting;
isBlockAll?: boolean;
blockedLabelIds?: number[];
allowedLabelIds?: number[];
type?: AdExclusionRuleType;
}