UNPKG

dfp-lib

Version:

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

13 lines (12 loc) 380 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class DayPart extends xmlElement_1.XMLElement { constructor(dayOfWeek = null, startTime = null, endTime = null) { super(); this.dayOfWeek = dayOfWeek; this.startTime = startTime; this.endTime = endTime; } } DayPart.XSI_TYPE = "DayPart"; exports.DayPart = DayPart;