dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
17 lines (16 loc) • 672 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class SuggestedAdUnit extends xmlElement_1.XMLElement {
constructor(id = null, numRequests = null, path = null, parentPath = null, targetWindow = null, targetPlatform = null, suggestedAdUnitSizes = null) {
super();
this.id = id;
this.numRequests = numRequests;
this.path = path;
this.parentPath = parentPath;
this.targetWindow = targetWindow;
this.targetPlatform = targetPlatform;
this.suggestedAdUnitSizes = suggestedAdUnitSizes;
}
}
SuggestedAdUnit.XSI_TYPE = "SuggestedAdUnit";
exports.SuggestedAdUnit = SuggestedAdUnit;