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