dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
18 lines (17 loc) • 697 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class RateCard extends xmlElement_1.XMLElement {
constructor(id = null, name = null, currencyCode = null, status = null, forMarketplace = null, pricingModel = null, appliedTeamIds = null, lastModifiedDateTime = null) {
super();
this.id = id;
this.name = name;
this.currencyCode = currencyCode;
this.status = status;
this.forMarketplace = forMarketplace;
this.pricingModel = pricingModel;
this.appliedTeamIds = appliedTeamIds;
this.lastModifiedDateTime = lastModifiedDateTime;
}
}
RateCard.XSI_TYPE = "RateCard";
exports.RateCard = RateCard;