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