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