dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
14 lines (13 loc) • 414 B
JavaScript
;
const technology_1 = require("./technology");
class Browser extends technology_1.Technology {
constructor(majorVersion = null, minorVersion = null, id = null, name = null) {
super(id, name);
this.majorVersion = majorVersion;
this.minorVersion = minorVersion;
this.id = id;
this.name = name;
}
}
Browser.XSI_TYPE = "Browser";
exports.Browser = Browser;