UNPKG

dfp-lib

Version:

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

10 lines (9 loc) 376 B
import { XMLElement } from '../../common/soap/xmlElement'; import { DayPart } from './dayPart'; import { DeliveryTimeZone } from './deliveryTimeZone'; export declare class DayPartTargeting extends XMLElement { protected static XSI_TYPE: string; dayParts: DayPart[]; timeZone: DeliveryTimeZone; constructor(dayParts?: DayPart[], timeZone?: DeliveryTimeZone); }