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