UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

10 lines (9 loc) 463 B
import { XMLElement } from '../../common/soap/xmlElement'; import { CustomCriteriaSet } from './customCriteriaSet'; import { InventoryTargeting } from './inventoryTargeting'; export declare class FirstPartyAudienceSegmentRule extends XMLElement { protected static XSI_TYPE: string; inventoryRule: InventoryTargeting; customCriteriaRule: CustomCriteriaSet; constructor(inventoryRule?: InventoryTargeting, customCriteriaRule?: CustomCriteriaSet); }