UNPKG

dfp-lib

Version:

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

15 lines (14 loc) 673 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class Stats extends xmlElement_1.XMLElement { constructor(impressionsDelivered = null, clicksDelivered = null, videoCompletionsDelivered = null, videoStartsDelivered = null, viewableImpressionsDelivered = null) { super(); this.impressionsDelivered = impressionsDelivered; this.clicksDelivered = clicksDelivered; this.videoCompletionsDelivered = videoCompletionsDelivered; this.videoStartsDelivered = videoStartsDelivered; this.viewableImpressionsDelivered = viewableImpressionsDelivered; } } Stats.XSI_TYPE = "Stats"; exports.Stats = Stats;