dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
12 lines (11 loc) • 371 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class DayPartTargeting extends xmlElement_1.XMLElement {
constructor(dayParts = null, timeZone = null) {
super();
this.dayParts = dayParts;
this.timeZone = timeZone;
}
}
DayPartTargeting.XSI_TYPE = "DayPartTargeting";
exports.DayPartTargeting = DayPartTargeting;