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