UNPKG

dfp-lib

Version:

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

10 lines (9 loc) 454 B
import { AdUnitTargeting } from './adUnitTargeting'; import { XMLElement } from '../../common/soap/xmlElement'; export declare class InventoryTargeting extends XMLElement { protected static XSI_TYPE: string; targetedAdUnits: AdUnitTargeting[]; excludedAdUnits: AdUnitTargeting[]; targetedPlacementIds: number[]; constructor(targetedAdUnits?: AdUnitTargeting[], excludedAdUnits?: AdUnitTargeting[], targetedPlacementIds?: number[]); }