dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
19 lines (18 loc) • 782 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class Network extends xmlElement_1.XMLElement {
constructor(id = null, displayName = null, networkCode = null, propertyCode = null, timeZone = null, currencyCode = null, secondaryCurrencyCodes = null, effectiveRootAdUnitId = null, isTest = null) {
super();
this.id = id;
this.displayName = displayName;
this.networkCode = networkCode;
this.propertyCode = propertyCode;
this.timeZone = timeZone;
this.currencyCode = currencyCode;
this.secondaryCurrencyCodes = secondaryCurrencyCodes;
this.effectiveRootAdUnitId = effectiveRootAdUnitId;
this.isTest = isTest;
}
}
Network.XSI_TYPE = "Network";
exports.Network = Network;