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