dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
31 lines (30 loc) • 1.73 kB
JavaScript
"use strict";
const xmlElement_1 = require("../../common/soap/xmlElement");
class ReconciliationLineItemReport extends xmlElement_1.XMLElement {
constructor(id = null, reconciliationReportId = null, orderId = null, proposalId = null, lineItemId = null, proposalLineItemId = null, rateType = null, netRate = null, grossRate = null, pricingModel = null, dfpVolume = null, thirdPartyVolume = null, manualVolume = null, reconciliationSource = null, reconciledVolume = null, capVolume = null, rolloverVolume = null, billableVolume = null, netBillableRevenue = null, grossBillableRevenue = null, billableRevenueOverrides = null) {
super();
this.id = id;
this.reconciliationReportId = reconciliationReportId;
this.orderId = orderId;
this.proposalId = proposalId;
this.lineItemId = lineItemId;
this.proposalLineItemId = proposalLineItemId;
this.rateType = rateType;
this.netRate = netRate;
this.grossRate = grossRate;
this.pricingModel = pricingModel;
this.dfpVolume = dfpVolume;
this.thirdPartyVolume = thirdPartyVolume;
this.manualVolume = manualVolume;
this.reconciliationSource = reconciliationSource;
this.reconciledVolume = reconciledVolume;
this.capVolume = capVolume;
this.rolloverVolume = rolloverVolume;
this.billableVolume = billableVolume;
this.netBillableRevenue = netBillableRevenue;
this.grossBillableRevenue = grossBillableRevenue;
this.billableRevenueOverrides = billableRevenueOverrides;
}
}
ReconciliationLineItemReport.XSI_TYPE = "ReconciliationLineItemReport";
exports.ReconciliationLineItemReport = ReconciliationLineItemReport;