dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
18 lines (17 loc) • 708 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class AdExclusionRule extends xmlElement_1.XMLElement {
constructor(id = null, name = null, isActive = null, inventoryTargeting = null, isBlockAll = null, blockedLabelIds = null, allowedLabelIds = null, type = null) {
super();
this.id = id;
this.name = name;
this.isActive = isActive;
this.inventoryTargeting = inventoryTargeting;
this.isBlockAll = isBlockAll;
this.blockedLabelIds = blockedLabelIds;
this.allowedLabelIds = allowedLabelIds;
this.type = type;
}
}
AdExclusionRule.XSI_TYPE = "AdExclusionRule";
exports.AdExclusionRule = AdExclusionRule;