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