dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
16 lines (15 loc) • 709 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { InventoryTargeting } from './inventoryTargeting';
import { AdExclusionRuleType } from './adExclusionRuleType';
export declare class AdExclusionRule extends XMLElement {
protected static XSI_TYPE: string;
id: number;
name: string;
isActive: boolean;
inventoryTargeting: InventoryTargeting;
isBlockAll: boolean;
blockedLabelIds: number[];
allowedLabelIds: number[];
type: AdExclusionRuleType;
constructor(id?: number, name?: string, isActive?: boolean, inventoryTargeting?: InventoryTargeting, isBlockAll?: boolean, blockedLabelIds?: number[], allowedLabelIds?: number[], type?: AdExclusionRuleType);
}