dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
32 lines (31 loc) • 1.8 kB
JavaScript
"use strict";
const xmlElement_1 = require("../../common/soap/xmlElement");
class ReconciliationReportRow extends xmlElement_1.XMLElement {
constructor(id = null, reconciliationReportId = null, lineItemId = null, creativeId = null, orderId = null, advertiserId = null, proposalLineItemId = null, proposalId = null, reconciliationSource = null, rateType = null, lineItemCostPerUnit = null, lineItemContractedUnitsBought = null, dfpVolume = null, thirdPartyVolume = null, manualVolume = null, reconciledVolume = null, contractedRevenue = null, dfpRevenue = null, thirdPartyRevenue = null, manualRevenue = null, reconciledRevenue = null, comments = null) {
super();
this.id = id;
this.reconciliationReportId = reconciliationReportId;
this.lineItemId = lineItemId;
this.creativeId = creativeId;
this.orderId = orderId;
this.advertiserId = advertiserId;
this.proposalLineItemId = proposalLineItemId;
this.proposalId = proposalId;
this.reconciliationSource = reconciliationSource;
this.rateType = rateType;
this.lineItemCostPerUnit = lineItemCostPerUnit;
this.lineItemContractedUnitsBought = lineItemContractedUnitsBought;
this.dfpVolume = dfpVolume;
this.thirdPartyVolume = thirdPartyVolume;
this.manualVolume = manualVolume;
this.reconciledVolume = reconciledVolume;
this.contractedRevenue = contractedRevenue;
this.dfpRevenue = dfpRevenue;
this.thirdPartyRevenue = thirdPartyRevenue;
this.manualRevenue = manualRevenue;
this.reconciledRevenue = reconciledRevenue;
this.comments = comments;
}
}
ReconciliationReportRow.XSI_TYPE = "ReconciliationReportRow";
exports.ReconciliationReportRow = ReconciliationReportRow;