dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
12 lines (11 loc) • 514 B
JavaScript
;
const premiumFeature_1 = require("./premiumFeature");
class CustomTargetingPremiumFeature extends premiumFeature_1.PremiumFeature {
constructor(customTargetingKeyId = null, customTargetingValueId = null) {
super();
this.customTargetingKeyId = customTargetingKeyId;
this.customTargetingValueId = customTargetingValueId;
}
}
CustomTargetingPremiumFeature.XSI_TYPE = "CustomTargetingPremiumFeature";
exports.CustomTargetingPremiumFeature = CustomTargetingPremiumFeature;