dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
14 lines (13 loc) • 463 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class ReconciliationReport extends xmlElement_1.XMLElement {
constructor(id = null, status = null, startDate = null, notes = null) {
super();
this.id = id;
this.status = status;
this.startDate = startDate;
this.notes = notes;
}
}
ReconciliationReport.XSI_TYPE = "ReconciliationReport";
exports.ReconciliationReport = ReconciliationReport;