dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
12 lines (11 loc) • 363 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class StringValueMapEntry extends xmlElement_1.XMLElement {
constructor(key = null, value = null) {
super();
this.key = key;
this.value = value;
}
}
StringValueMapEntry.XSI_TYPE = "String_ValueMapEntry";
exports.StringValueMapEntry = StringValueMapEntry;