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