UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

16 lines (15 loc) 690 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class LineItemDeliveryForecast extends xmlElement_1.XMLElement { constructor(lineItemId = null, orderId = null, unitType = null, predictedDeliveryUnits = null, deliveredUnits = null, matchedUnits = null) { super(); this.lineItemId = lineItemId; this.orderId = orderId; this.unitType = unitType; this.predictedDeliveryUnits = predictedDeliveryUnits; this.deliveredUnits = deliveredUnits; this.matchedUnits = matchedUnits; } } LineItemDeliveryForecast.XSI_TYPE = "LineItemDeliveryForecast"; exports.LineItemDeliveryForecast = LineItemDeliveryForecast;