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