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