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