dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
12 lines (11 loc) • 344 B
JavaScript
;
const baseRate_1 = require("./baseRate");
class UnknownBaseRate extends baseRate_1.BaseRate {
constructor(rateCardId = null, id = null) {
super(rateCardId, id);
this.rateCardId = rateCardId;
this.id = id;
}
}
UnknownBaseRate.XSI_TYPE = "UnknownBaseRate";
exports.UnknownBaseRate = UnknownBaseRate;