dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
15 lines (14 loc) • 466 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class DfpDateTime extends xmlElement_1.XMLElement {
constructor(date = null, hour = null, minute = null, second = null, timeZoneID = null) {
super();
this.date = date;
this.hour = hour;
this.minute = minute;
this.second = second;
this.timeZoneID = timeZoneID;
}
}
DfpDateTime.XSI_TYPE = "DateTime";
exports.DfpDateTime = DfpDateTime;