dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
15 lines (14 loc) • 547 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class PremiumRate extends xmlElement_1.XMLElement {
constructor(id = null, rateCardId = null, pricingMethod = null, premiumFeature = null, premiumRateValues = null) {
super();
this.id = id;
this.rateCardId = rateCardId;
this.pricingMethod = pricingMethod;
this.premiumFeature = premiumFeature;
this.premiumRateValues = premiumRateValues;
}
}
PremiumRate.XSI_TYPE = "PremiumRate";
exports.PremiumRate = PremiumRate;