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