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