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