dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
16 lines (15 loc) • 428 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class ReportJob extends xmlElement_1.XMLElement {
constructor(id = null, reportQuery = null) {
super();
this.id = id;
this.reportQuery = reportQuery;
}
setReportQuery(reportQuery) {
this.reportQuery = reportQuery;
return this;
}
}
ReportJob.XSI_TYPE = "ReportJob";
exports.ReportJob = ReportJob;